c_cpp 执行命令并获取输出
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 执行命令并获取输出相关的知识,希望对你有一定的参考价值。
// From: https://stackoverflow.com/questions/478898/how-to-execute-a-command-and-get-output-of-command-within-c
#include <string>
#include <iostream>
#include <cstdio>
#include <memory>
std::string exec(const char* cmd) {
std::shared_ptr<FILE> pipe(popen(cmd, "r"), pclose);
if (!pipe) return "ERROR";
char buffer[128];
std::string result = "";
while (!feof(pipe.get())) {
if (fgets(buffer, 128, pipe.get()) != NULL)
result += buffer;
}
return result;
}
以上是关于c_cpp 执行命令并获取输出的主要内容,如果未能解决你的问题,请参考以下文章
Kotlin-native 执行命令并获取输出
java执行cmd命令并获取输出结果
执行外部命令并获取输出
python执行外部命令并获取输出
使用Python执行dos命令并获取输出的结果
windows下C与C++执行cmd命令并实时获取输出