这篇文章主要为大家详细介绍了python多线程方式执行多个bat的实现代码,感兴趣的小伙伴们可以参考一下
python多线程方式执行多个bat的代码,感兴趣的朋友可以参考下。
import threading
from win32api import *
class mythread(threading.thread):
def __init__(self, bat_path, **kwargs):
threading.thread.__init__(self, **kwargs)
self.bat_path = bat_path
def run(self):
shellexecute(0, none, self.bat_path, none, “c:”, true)
for i in range(1,4):
t = mythread(“c: est” + str(i) + “.bat”)
t.start()
以上就是本文的全部内容,希望对大家学习python程序设计有所帮助。
更多python多线程方式执行多个bat相关文章请关注php中文网!