python 和进程
python 中查找进程名称和所有者的最佳方法是什么?
现在我使用WMI,但是这个版本太慢了。
What is the best way in python find the process name and owner?
Now i use WMI, but this version is too slow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过使用 https://github.com/giampaolo/psutil:
By using https://github.com/giampaolo/psutil:
进程名称:sys.argv[0] 不足以满足您的目的吗?
Process name: is sys.argv[0] not sufficient for your purposes?