python多线程方式执行多个bat代码
发布时间:2020-05-24 02:19:54 所属栏目:Python 来源:互联网
导读:python多线程方式执行多个bat的代码,感兴趣的朋友可以参考下。importthreadingfromwin32apiimport*
|
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,"c:",True)
for i in range(1,4):
t = MyThread("c: est" + str(i) + ".bat")
t.start()
以上就是本文的全部内容,希望对大家学习python程序设计有所帮助。 (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
