Python-通过更多python进程的脚本名称杀死一个python进程

时间:2017-02-21 06:55:15

标签: python python-2.7

在我的Windows服务器中运行了两个或三个python进程。 例如:

C:\Users\nithya>wmic processess where caption="python.exe" get commandline
CommandLine

python  -i -Wignore sample_test.py
"C:\Python27\python.exe" "C:\examples\testing.py" --q
"C:\Python27\python.exe" "C:\examples\gui.py"  --i

从上面的过程中我想使用python代码从testing.py或gui.py中删除sample_test.py。

有没有安全的方法来杀死那个python进程而不会杀死所有的python进程?

哪种方法最好这样做?可能是psutil或os或subprocess?

提前致谢。

0 个答案:

没有答案