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

創(chuàng)新互聯(lián)主營(yíng)兩當(dāng)網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,app軟件開發(fā),兩當(dāng)h5重慶小程序開發(fā)搭建,兩當(dāng)網(wǎng)站營(yíng)銷推廣歡迎兩當(dā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通過(guò)進(jìn)程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教程》!
新聞標(biāo)題:創(chuàng)新互聯(lián)Python教程:python3怎么判斷進(jìn)程是否存在
分享鏈接:http://www.5511xx.com/article/dpgghpo.html


咨詢
建站咨詢
