python中可以通过判断进程是否存在来判断进程是否被杀掉:
python中可以使用win32com库来获取进程信息。
importwin32com.client defcheck_exsit(process_name): WMI=win32com.client.GetObject('winmgmts:') processCodeCov=WMI.ExecQuery('select*fromWin32_ProcesswhereNamelike"%{}%"'.format(process_name)) iflen(processCodeCov)>0: returnTrue else: returnFalse if__name__=='__main__': res=check_exsit('tray.exe') print(res)原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容