我正在尝试使用 Python 获取 Windows 10 中进程的所有打开文件。这是我的代码-
import psutil
for proc in psutil.process_iter():
print proc.open_files()
它适用于 Windows 7,但在 Windows 10 中,我得到所有进程的空数组。有谁知道是什么问题?
我正在尝试使用 Python 获取 Windows 10 中进程的所有打开文件。这是我的代码-
import psutil
for proc in psutil.process_iter():
print proc.open_files()
它适用于 Windows 7,但在 Windows 10 中,我得到所有进程的空数组。有谁知道是什么问题?