python判断进程是否存在的例子

发布时间:2020-05-22编辑:脚本学堂
本文介绍了python判断一个进程是否存在的方法,python进程存在与否的检测实例,有需要的朋友参考下。

python判断进程是否存在

代码:

#!/usr/bin/python
#-*- coding:utf-8 -*- 
def check_exsit(process_name): 
import win32com.client 
WMI = win32com.client.GetObject('winmgmts:') 
processCodeCov = WMI.ExecQuery('select * from Win32_Process where Name="%s"' % process_name) 
if len(processCodeCov) > 0: 
print '%s is exists' % process_name 
else: 
print '%s is not exists' % process_name 

if __name__ == '__main__': 
check_exsit('chrome.exe')