码迷,mamicode.com
首页 > 其他好文 > 详细

popen在程序内调用可执行程序

时间:2015-01-13 16:04:19      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:

一般有3种方法:1.exec函数 2.system函数 3. popen

int xpipe(char *cmdname, char *outbuf, int outlen)
{
    int ret = 0;
    FILE *pf;

    pf = popen(cmdname, "r");
    if( !pf )
        return -1; 

    if(outbuf)
    {   
        ret = fread(outbuf, 1, outlen-1, pf);
        if(ret<=0)
        {   
            pclose(pf);
            return ret;
        }   

        while( outbuf[ret-1] == '\r' || outbuf[ret-1] == '\n' )
            ret--;
        outbuf[ret] = 0;
    }   

    pclose(pf);
    return ret;
}



popen在程序内调用可执行程序

标签:

原文地址:http://blog.csdn.net/aa838260772/article/details/42676751

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!