python如何判断一个进程是否存在

967次阅读
没有评论

python如何判断一个进程是否存在

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')
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2021-06-29发表,共计399字。
新手QQ群:570568346,欢迎进群讨论 Python51学习