我正在使用以下代码尝试df
在 Linux 中使用popen
.
#include <iostream> // file and std I/O functions
int main(int argc, char** argv) {
FILE* fp;
char * buffer;
long bufSize;
size_t ret_code;
fp = popen("df", "r");
if(fp == NULL) { // head off errors reading the results
std::cerr << "Could not execute command: df" << std::endl;
exit(1);
}
// get the size of the results
fseek(fp, 0, SEEK_END);
bufSize = ftell(fp);
rewind(fp);
// allocate the memory to contain the results
buffer = (char*)malloc( sizeof(char) * bufSize );
if(buffer == NULL) {
std::cerr << "Memory error." << std::endl;
exit(2);
}
// read the results into the buffer
ret_code = fread(buffer, 1, sizeof(buffer), fp);
if(ret_code != bufSize) {
std::cerr << "Error reading output." << std::endl;
exit(3);
}
// print the results
std::cout << buffer << std::endl;
// clean up
pclose(fp);
free(buffer);
return (EXIT_SUCCESS);
}
这段代码给了我一个退出状态为“2”的“内存错误”,所以我可以看到它失败的地方,我只是不明白为什么。
我从Ubuntu Forums和C++ Reference上找到的示例代码把它放在一起,所以我没有嫁给它。如果有人可以提出更好的方法来读取 system() 调用的结果,我愿意接受新的想法。
编辑原文:好的,bufSize
结果是否定的,现在我明白为什么了。您不能像我天真地尝试那样随机访问管道。
我不能成为第一个尝试这样做的人。有人可以给(或指向我)一个示例,说明如何将 system() 调用的结果读取到 C++ 中的变量中吗?