python 实现调用cmd的正确姿势

首先需要考虑几种情况 :

1) 是否需要阻塞执行

2) 是否需要获取CMD命令的执行结果errorlevel返回值(即returncode)

3)  是否需要在CMD打印的结果中提取一些结果 

 

    def ExecCmd(self, strCommand, bReqRet=True,timeout=10.0):
        """
        *************************************************************
        desc: 执行windows命令行命令
        args: none
        return: 命令行执行结果
        raise: none
        remark: none
        *************************************************************
        """
        try:
            if bReqRet:
                outfilename = ‘cmdout.log’
                errfilename = ‘cmderr.log’
                with io.open(outfilename, 'wb') as outwriter, io.open(outfilename, 'rb', 1) as outreader,\
                    io.open(errfilename, 'wb') as errwriter, io.open(errfilename, 'rb', 1) as errreader:
                    process = subprocess.Popen(strCommand, stdout=outwriter, stderr=errwriter, shell=True)
                    expireTime= timeout+time.time()
                    while process.poll() is None and time.time() < expireTime:
                        time.sleep(0.5)
                    if time.time() > expireTime:
                        process.kill()
                    strResult = outreader.read()
                    strErrInfo = errreader.read()
                if strErrInfo == '':
                    print("out info:", strResult)
                    return SUCCESS, strResult
                else:
                    print("err info:", strErrInfo)
                    return FAIL, strErrInfo
            else:
                process = subprocess.Popen(strCommand, shell=True)
                print("Command Sent")
                return SUCCESS, process
        except:
            print(traceback.foramt_exc())
            raise sys.exc_info()[1]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

alooffox

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值