• c++ 程序中使用命令行


    在一个c++程序中想要使用系统的命令行,基本的流程是创建一个子进程,令该子进程去完成shell命令行的执行。

    比较直接的方法是先通过fork()创建一个子进程,随后在该子进程内通过exec系列函数执行命令行。

    功能强大的popen函数集成了以上的功能,并且在父子进程间创建了管道,父进程可以通过该管道进行读写操作。

    popen介绍

    头文件

    #include 

    函数原型

    FILE *popen(const char *command, const char *type)

    函数功能

    file = popen(cmd,"r");
    

    popen()会调用fork()产生子进程,然后从子进程中调用/bin/sh -c来执行参数command的指令。参数type可使用“r”代表读取,“w”代表写入。如果type是"r"则文件指针连接到command的标准输出,读取命令的标准输出;如果type是"w"则文件指针连接到command的标准输入,写入命令的标准输入。

    依照此type值,popen()会建立管道连到子进程的标准输出设备或标准输入设备,然后返回一个文件指针。随后进程便可利用此文件指针来读取子进程的标准输出设备或是写入到子进程的标准输入设备中。

    例程

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. void myCommand(char* cmd){
    7. FILE* file;
    8. file = popen(cmd,"r");
    9. while (fgets(cmd, (int)strlen(cmd), file) !=nullptr) {
    10. }
    11. pclose(file);
    12. }
    13. int main(int argc, const char * argv[]) {
    14. char cmd[2048];
    15. char zipName[512];
    16. char path[1024];
    17. //测试使用的是zip指令,只要把完整指令放在cmd字符数组里就行
    18. strcpy(zipName,"/Users/zhangzhehao/fileTest");
    19. strcpy(path,"/Users/zhangzhehao/fileTest");
    20. //将需要使用的命令行拼出来
    21. snprintf(cmd, 2048, "zip -r -j %s.zip %s", zipName, path);
    22. //将命令行作为参数
    23. myCommand(cmd);
    24. std::cout << "Hello, World!\n";
    25. return 0;
    26. }

    以上例程中测试的是用zip进行压缩文件指令,实际上测试功能可以更简单些:

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. void myCommand(char* cmd){
    7. FILE* file;
    8. file = popen(cmd,"r");
    9. while (fgets(cmd, (int)strlen(cmd), file) !=nullptr) {
    10. }
    11. pclose(file);
    12. }
    13. int main(int argc, const char * argv[]) {
    14. char cmd[2048];
    15. strcpy(cmd,"ls");
    16. //将命令行作为参数
    17. myCommand(cmd);
    18. std::cout << "Hello, World!\n";
    19. return 0;
    20. }

    这样就可以测试ls指令了,可以展示当前目录下的所有文件。

    需要注意的是,popen返回一个文件指针,通过该指针我们读取子进程的标准输出设备或是写入到子进程的标准输入设备中,也就是将cmd真正传给子进程,令子进程去执行cmd。

    mycommand函数也可以写的更加健壮:

    1. std::string myCommand(char* cmd) {
    2. std::array<char, 128> buffer;
    3. //记录运行结果的字符串
    4. std::string result;
    5. //popen:创建一个管道,调用fork产生一个子进程,执行一个shell以运行命令开启一个进程
    6. //pclose:关闭标准IO流
    7. std::unique_ptrdecltype(&pclose)> pipe(popen(cmd, "r"), pclose);
    8. if (!pipe) {
    9. result = "error";
    10. return result;
    11. }
    12. while (fgets(buffer.data(), buffer.size(), pipe.get()) != nullptr) {
    13. //记录指令行
    14. result += buffer.data();
    15. }
    16. return result;
    17. }

    番外:zip的使用

     zip -r /Users/fileTest.zip /Users/fileTest

    以上命令会将fileTest文件夹里的文件进行压缩,并以fileTest.zip的形式存放在Users文件夹下。 

    但是这里会出现一个问题,该fileTest.zip会将Users文件夹也加入到压缩的内容中,也就是说

    fileTest.zip里的内容是:

    Users文件夹->fileTest文件夹->被压缩的各种文件

    大多数时候我们只想要这些内容被压缩:

    fileTest文件夹->被压缩的各种文件

    因此需要在命令行中增加指令“-j”。

    zip -r -j /Users/fileTest.zip /Users/fileTest

    这样压缩的文件里只会保存最后一个文件夹。

  • 相关阅读:
    HashMap源码分析(一)
    null 和 undefined 的区别
    2022年6月英语六级作文范文
    cf Educational Codeforces Round 133 E. Swap and Maximum Block
    驱动开发概念详解
    【无标题】Linux VMware安装centos之后设置静态IP
    Qt实现SwitchButton滑动开关按钮组件
    linux:系统状态检测命令
    IDEA Out of memory 问题
    111. 二叉树的最小深度
  • 原文地址:https://blog.csdn.net/m0_37872216/article/details/126961271