需要被执行的 Python 脚本 ex1.py, ex2.py:
# -*- coding: utf-8 -*-
import os, time
file_name = os.path.split(os.path.abspath(__file__))[-1] # 当前文件名
while True:
print('我是'+file_name)
time.sleep(2)
批量运行其他的 Python 脚本的 Python 脚本 run_scripts.py
# -*- coding: utf-8 -*-
import os
base_dir = os.path.dirname(os.path.abspath(__file__)) #当前目录
file_list = os.listdir(os.getcwd())
this_file = os.path.split(os.path.abspath(__file__))[-1] # 当前文件名
# 排除自身
file_list.remove(this_file)
for file in file_list:
cmd = 'python ' + base_dir + '\\' + file
os.system('cmd /k start ' + cmd)
运行后发现只能执行 ex1.py ,如果想要执行 ex2.py 必须等到 ex1.py 执行结束,但是 ex1.py 是死循环,就是需要一直执行下去。 请问各位有什么好的办法吗?
1
wevsty 2018-02-25 16:45:28 +08:00
用 subprocess 别用 os.system 就行了
|
2
jackyzy823 2018-02-25 16:49:04 +08:00
from multiprocessing.dummy import Pool
Pool(len(file_list)).map(lambda x: os.system('cmd /k start ' + 'python ' + base_dir + '\\' + file) ,file_list) 当然这并不是一个非常好的解决方案。 |
3
ipwx 2018-02-25 16:49:12 +08:00
|
4
ipwx 2018-02-25 16:50:33 +08:00 1
os.system 太弱了,你这里如果 base_dir 有空格程序都会跪。用我上面的 subprocess.Popen/check_output/check_call 配合 sys.executable 才是正解。
|
5
ChenJinluo OP @wevsty 试了下,改成 subprocess.call('cmd /k start ' + cmd)结果是一样的。
|
6
wevsty 2018-02-25 16:53:18 +08:00 1
@ChenJinluo
subprocess.Popen |
7
ipwx 2018-02-25 16:54:16 +08:00
如果你要等所有进程完了再退出主程序,你可以把 subprocess.Popen 返回的 proc 都存下来,全部拿到之后循环 proc.wait() 一下。
|
8
ChenJinluo OP @ipwx 你的方法可以让两个程序都运行,但是都是在原来的 cmd 运行的,我想运行每个脚本的时候都打开一个新的 cmd。
|
9
ChenJinluo OP @wevsty 完美,Thx。
|