1

Windows 7 で psutil を使用してプロセスの PID を取得しようとしていますが、アクセス許可エラーが発生します。スクリプトを管理者として実行しているコマンド プロンプトを実行しようとしましたが、効果がないようです。エラーと関連するコードの両方を以下に示します。エラーが発生する行は、を使用してプロセス名にアクセスしようとしたときproc.nameです。これを修正する方法について何か提案はありますか? どうもありがとう!

エラー:

Traceback (most recent call last):
  File "C:\Python33\lib\site-packages\psutil\_psmswindows.py", line 190, in wrapper
    return fun(self, *args, **kwargs)
  File "C:\Python33\lib\site-packages\psutil\_psmswindows.py", line 229, in get_process_exe
    return _convert_raw_path(_psutil_mswindows.get_process_exe(self.pid))
PermissionError: [WinError 5] Access is denied

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "simple_address_retrieve.py", line 14, in <module>
    if proc.name == PROCNAME:
  File "C:\Python33\lib\site-packages\psutil\_common.py", line 48, in __get__
    ret = self.func(instance)
  File "C:\Python33\lib\site-packages\psutil\__init__.py", line 341, in name
    name = self._platform_impl.get_process_name()
  File "C:\Python33\lib\site-packages\psutil\_psmswindows.py", line 190, in wrapper
    return fun(self, *args, **kwargs)
  File "C:\Python33\lib\site-packages\psutil\_psmswindows.py", line 222, in get_process_name
    return os.path.basename(self.get_process_exe())
  File "C:\Python33\lib\site-packages\psutil\_psmswindows.py", line 194, in wrapper
    raise AccessDenied(self.pid, self._process_name)
psutil._error.AccessDenied: (pid=128)

コード:

PROCNAME = "MyProcessName.exe"

for proc in psutil.process_iter():
    if proc.name == PROCNAME:
        print(proc)
4

2 に答える 2

0

psutil.AccessDenied を除く: # windows

def test_children_duplicates(self):
        # find the process which has the highest number of children
        table = collections.defaultdict(int)
        for p in psutil.process_iter():
            try:
                table[p.ppid()] += 1
            except psutil.Error:
                pass
        # this is the one, now let's make sure there are no duplicates
        pid = sorted(table.items(), key=lambda x: x[1])[-1][0]
        p = psutil.Process(pid)
        try:
            c = p.children(recursive=True)
        except psutil.AccessDenied:  # windows
            pass
        else:
            self.assertEqual(len(c), len(set(c))) 

参照: https://www.programcreek.com/python/example/53869/psutil.process_iter

def find_process(regex):
    "If 'regex' match on cmdline return number and list of processes with his pid, name, cmdline."
    process_cmd_name = re.compile(regex)
    ls = []
    for proc in psutil.process_iter(attrs=['pid','name','cmdline']):
        try:
            if process_cmd_name.search(str(" ".join(proc.cmdline()))):
                ls.append(proc.info)
        except psutil.AccessDenied:  # windows
            pass
    return (ls)

psutil.AccessDenied と組み合わせて、リスト内包表記で使用できる可能性があります。

于 2019-12-12T18:24:03.573 に答える