在我的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?
提前致谢。