新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
創(chuàng)新互聯(lián)Python教程:python3怎么判斷進程是否存在
通過進程名判斷

創(chuàng)新互聯(lián)主營兩當網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件開發(fā),兩當h5重慶小程序開發(fā)搭建,兩當網(wǎng)站營銷推廣歡迎兩當?shù)鹊貐^(qū)企業(yè)咨詢
import psutil
def judgeprocess(processname):
pl = psutil.pids()
for pid in pl:
if psutil.Process(pid).name() == processname:
print(pid)
break
else:
print("not found")
if judgeprocess('notepad++.exe') == 0:
print('success')
else:
pass通過進程ID判斷
import errno
import os
import sys
def pid_exists(pid):
"""Check whether pid exists in the current process table.
UNIX only.
"""
if pid < 0:
return False
if pid == 0:
# According to "man 2 kill" PID 0 refers to every process
# in the process group of the calling process.
# On certain systems 0 is a valid PID but we have no way
# to know that in a portable fashion.
raise ValueError('invalid PID 0')
try:
os.kill(pid, 0)
except OSError as err:
if err.errno == errno.ESRCH:
# ESRCH == No such process
return False
elif err.errno == errno.EPERM:
# EPERM clearly means there's a process to deny access to
return True
else:
# According to "man 2 kill" possible error values are
# (EINVAL, EPERM, ESRCH)
raise
else:
return True推薦學(xué)習(xí)《Python教程》!
網(wǎng)站名稱:創(chuàng)新互聯(lián)Python教程:python3怎么判斷進程是否存在
轉(zhuǎn)載來源:http://fisionsoft.com.cn/article/dpgghpo.html


咨詢
建站咨詢
