python 判断一个进程是否存在

来源:互联网 发布:java项目一般开发周期 编辑:程序博客网 时间:2024/06/05 01:51
#-*- 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')