python检测进程是否运行

  • Post author:
  • Post category:python


python判断进程是否在运行,可借助系统的tasklist命令根据返回的1和0来判断。

  import threading
  def pros():
        p = sups.run('tasklist | findstr fastboot.exe',shell=True) 
        pp = str(p)
        if int(pp[-2]) == 0:
            timerx = threading.Timer(2, pros())                
            timerx.start()
        else:
            gg.msgbox("分区数据恢复成功!", "消息提示", ok_button="确定")
        timerx = threading.Timer(2, pros())        
        timerx.start()

◣ win下的tasklist可找到正在运行的进程,如果正在运行就返回“0”,否则返回“1”。



版权声明:本文为dengshuangjang原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。