首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

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

2024-08-01 来源:华佗小知识

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')
显示全文