首页 > 编程 > Python > 正文

python调用bat脚本的子线程处理

2019-11-06 07:31:35
字体:
来源:转载
供稿:网友

今天学习使用python下的subPRocess模块,发现怎么都不能调用Popen函数,无法运行bat文件。

后发现是shell这一参数设置错误,shell=True是用于linux下的shell,在windows下运行时需要设置shell=False

import subprocessdef test:child = subprocess.Popen('a.bat',shell=False)


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表