gpt4 book ai didi

c - 如何从 C 运行外部程序并解析其输出?

转载 作者:行者123 更新时间:2023-11-30 16:54:18 26 4
gpt4 key购买 nike

我有一个实用程序,可以输出游戏所需的文件列表。如何在 C 程序中运行该实用程序并获取其输出,以便我可以在同一程序中对其进行操作?

更新:关于缺乏信息的好呼吁。该实用程序会输出一系列字符串,这应该可以跨 Mac/Windows/Linux 移植。请注意,我正在寻找一种编程方式来执行该实用程序并保留其输出(发送到标准输出)。

最佳答案

正如其他人指出的,popen() 是最标准的方法。由于没有答案提供使用此方法的示例,因此如下:

#include <stdio.h>

#define BUFSIZE 128

int parse_output(void) {
char *cmd = "ls -l";

char buf[BUFSIZE] = {0};
FILE *fp;

if ((fp = popen(cmd, "r")) == NULL) {
printf("Error opening pipe!\n");
return -1;
}

while (fgets(buf, BUFSIZE, fp) != NULL) {
// Do whatever you want here...
printf("OUTPUT: %s", buf);
}

if (pclose(fp)) {
printf("Command not found or exited with error status\n");
return -1;
}

return 0;
}

示例输出:

OUTPUT: total 16
OUTPUT: -rwxr-xr-x 1 14077 14077 8832 Oct 19 04:32 a.out
OUTPUT: -rw-r--r-- 1 14077 14077 1549 Oct 19 04:32 main.c

关于c - 如何从 C 运行外部程序并解析其输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40559410/

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