Python 官方文档:入门教程 => 点击学习
python多线程方式执行多个bat的代码,感兴趣的朋友可以参考下。 import threading from win32api import * class MyThread(threading
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()
--结束END--
本文标题: python多线程方式执行多个bat代码
本文链接: https://lsjlt.com/news/14810.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0