C++ 操作cmd并返回结果

#include <iostream>
using namespace std ;
// 描述:execmd函数执行命令,并将结果存储到result字符串数组中 
// 参数:cmd表示要执行的命令
// result是执行的结果存储的字符串数组
// 函数执行成功返回1,失败返回0  
int execmd(char* cmd,char* result) {
	char buffer[128];                         //定义缓冲区                        
	FILE* pipe = _popen(cmd, "r");            //打开管道,并执行命令 
	if (!pipe)
		return 0;                      //返回0表示运行失败 

	while(!feof(pipe)) {
		if(fgets(buffer, 128, pipe)){             //将管道输出到result中 
			strcat(result,buffer);
		}
	}
	_pclose(pipe);                            //关闭管道 
	return 1;                                 //返回1表示运行成功 
}

int main(){
	char result[1024*4]="";                   //定义存放结果的字符串数组 
	if(1==execmd("ipconfig",result)){
		printf(result);
	}
	system("pause");                          //暂停以查看结果 
} 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值