在C++中,你可以使用system()
函数来执行CMD命令并返回结果
#include <iostream>
#include <cstdlib>
int main() {
// 要执行的CMD命令,例如:dir
std::string cmd = "dir";
// 使用system()函数执行命令
int result = system(cmd.c_str());
// 检查命令是否成功执行
if (result == 0) {
std::cout << "命令执行成功" << std::endl;
} else {
std::cout << "命令执行失败,返回值: " << result << std::endl;
}
return 0;
}
请注意,system()
函数返回的是命令执行后的退出状态码。如果返回值为0,表示命令执行成功;否则表示执行失败。但是,它不会返回命令的输出结果。要获取命令的输出结果,你可以使用popen()
和pclose()
函数。下面是一个示例:
#include <iostream>
#include <cstdio>
#include <cstdlib>
int main() {
// 要执行的CMD命令,例如:dir
std::string cmd = "dir";
// 使用popen()函数执行命令并获取输出结果
FILE* pipe = popen(cmd.c_str(), "r");
if (!pipe) {
std::cerr << "无法执行命令" << std::endl;
return 1;
}
// 读取命令的输出结果
char buffer[128];
while (fgets(buffer, sizeof(buffer), pipe) != nullptr) {
std::cout << buffer;
}
// 关闭管道并检查命令是否成功执行
if (pclose(pipe) == -1) {
std::cerr << "无法关闭管道" << std::endl;
return 1;
}
// 检查命令是否成功执行
if (WEXITSTATUS(pipe) == 0) {
std::cout << "命令执行成功" << std::endl;
} else {
std::cout << "命令执行失败,返回值: " << WEXITSTATUS(pipe) << std::endl;
}
return 0;
}
在这个示例中,我们使用popen()
函数执行命令并获取输出结果,然后使用fgets()
函数逐行读取输出结果并打印到控制台。最后,我们使用pclose()
函数关闭管道并检查命令是否成功执行。