您当前的位置:首页 > 计算机 > 编程开发 > Python

Python查看指定进程的线程信息

时间:09-04来源:作者:点击数:

Python查看指定进程的线程信息

import psutil

import os

for pid in psutil.pids():

    try:

        proc = psutil.Process(pid)

        exeFile = os.path.basename(proc.exe())

        threads = psutil._psutil_windows.proc_threads(pid)

        times = 0

        for thread in threads:

            for timeUsed in thread[1:]:

                times += timeUsed

        print('='*20)

        print('Exe file:', os.path.basename(proc.exe()))

        print('Number of threads:', len(threads))

        print('Time used:', times)

    except:

        pass

方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门