使用exec在C中的不同目录中执行ls

Executing ls in a different directory in C using exec

标题很漂亮 self-explanatory 我想做的事情。

我目前的尝试:

  chdir("/Path/I/want/");   //this is different that the path my program is located at
      char * ls_args[] = { "ls" , "ls -l", NULL};
      execv(ls_args[0], ls_args);
    }

我没有收到任何错误或输出,有什么帮助吗?

Execv 函数需要您必须执行的命令的完整路径。因此,您应该通过

找出 ls 在您系统中的位置,而不是给出 "ls"

$ which ls

它可能在 /bin 文件夹中。 所以你必须给 exec "/bin/ls"。 此外,ls 的任何参数都应该是数组中的另一个成员。 所以不用

char * ls_args[] = { "ls" , "ls -l", NULL};

使用

char * ls_args[] = { "/bin/ls" , "-l", NULL};