gpt4 book ai didi

c++ - 我们如何在 linux 中使用 c 或 c++ 调用系统函数,如 pwd 或 ls -l 而无需使用 system() 或 exec() 函数?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:37:05 27 4
gpt4 key购买 nike

我正在尝试使用打印当前目录的路径这execl ("/bin/pwd", "pwd", NULL);输出:/home/user/Ubuntu并希望在当前路径之前打印所需的文本。例如: 我的名字/home/user/ubntu

这将如何完成?

#include <stdio.h>
#include <iostream>
#include <string.h>
#include <unistd.h>
#include <dirent.h>

using namespace std;
int main(){
string command;
while(command != "exit"){
cout<< "B-17235"<<return execl ("/bin/pwd", "pwd", NULL);
cin>> command;
}

return 0;
}

最佳答案

认为大多数 Unix-Linux-Gnu 命令都是用 C 或 C++ 编写的。通常有直接的 API 调用系统调用(man 2)或标准 C 库(man 3)来获取信息或完成工作。

要获取工作目录,只需按照 alk 的建议使用 getcwd()

char buffer[256];
if (NULL == getcwd(buffer, sizeof(buffer))) {
perror("can't get current dir");
return 1;
}

如果您想获得更复杂命令的输出,最直接的方法是使用包含 fork、exec 和管道管理的 popen:

FILE *fd = popen("/bin/pwd", "r");
char buffer[256];

if (fgets(buffer, sizeof(buffer), fd) == NULL) {
perror("can't read command");
return 1;
}
if (buffer[strlen(buffer) - 1] != '\n') {
fprintf(stderr, "path too long";
return 1;
}
pclose(fd);
// ok the working directory is is buffer

您不应该将它用于像 pwd 这样简单的命令。

别忘了:man 是你的 friend ! man getcwdman popen 会给你很多信息......

关于c++ - 我们如何在 linux 中使用 c 或 c++ 调用系统函数,如 pwd 或 ls -l 而无需使用 system() 或 exec() 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26717709/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com