作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个实用程序,可以输出游戏所需的文件列表。如何在 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/
我是一名优秀的程序员,十分优秀!