python 如何强制 subprocess.call 不等待被调用的命令完成
我使用 subprocess.call 来执行 bat 文件。 subprocess.call 正在等待 bat 文件完成才能继续。我希望它启动蝙蝠然后继续。查看子进程的文档,它似乎没有不等待命令完成的选项。
除了 subprocess.call 之外,还有其他方法可以做到这一点吗?
Im using subprocess.call to execute a bat file. subprocess.call is waiting for the bat file to complete before it continues. I want it to start the bat then continue on. Looking at the documents for subprocess it didnt look like it had an option to not wait for the command to complete.
Is there a way to do this or another option besides subprocess.call?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
subprocess.Popen 就是您正在寻找的!
subprocess.Popen is what you are looking for!