上传者: 38632763
|
上传时间: 2022-01-22 18:35:02
|
文件大小: 28KB
|
文件类型: -
详见代码如下: 复制代码 代码如下: import threading import time import os import subprocess def get_process_count(imagename): p = os.popen(‘tasklist /FI “IMAGENAME eq %s”‘ % imagename) return p.read().count(imagename) def timer_start(): t = threading.Timer(120,watch_func,(“is running…”)) t.start() def watch_func(ms