如何从 64 位系统中的 PID 获取系统的进程路径?
问题描述:
正如标题所说,我想从 PID 中找到系统的进程路径.我见过几个这样的线程:从使用delphi的PID并用谷歌搜索了很多.
As the title says I want to find a system's process path from PID. I have seen several threads like this: get the full path from a PID using delphi and googled a lot.
我尝试了很多功能,但都只适用于 32 位进程.
I have tried many functions but all are working only for 32-bit processes.
有什么办法可以使用PID找到64位进程的路径??
Is there any way to find the path of a 64-bit process using the PID??
答
type
TQueryFullProcessImageNameW = function(AProcess: THANDLE; AFlags: DWORD;
AFileName: PWideChar; var ASize: DWORD): BOOL; stdcall;
TGetModuleFileNameExW = function(AProcess: THANDLE; AModule: HMODULE;
AFilename: PWideChar; ASize: DWORD): DWORD; stdcall;
function IsWindows200OrLater: Boolean;
begin
Result := Win32MajorVersion >= 5;
end;
function IsWindowsVistaOrLater: Boolean;
begin
Result := Win32MajorVersion >= 6;
end;
var
PsapiLib: HMODULE;
GetModuleFileNameExW: TGetModuleFileNameExW;
procedure DonePsapiLib;
begin
if PsapiLib = 0 then Exit;
FreeLibrary(PsapiLib);
PsapiLib := 0;
@GetModuleFileNameExW := nil;
end;
procedure InitPsapiLib;
begin
if PsapiLib <> 0 then Exit;
PsapiLib := LoadLibrary('psapi.dll');
if PsapiLib = 0 then RaiseLastOSError;
@GetModuleFileNameExW := GetProcAddress(PsapiLib, 'GetModuleFileNameExW');
if not Assigned(GetModuleFileNameExW) then
try
RaiseLastOSError;
except
DonePsapiLib;
raise;
end;
end;
function GetFileNameByProcessID(AProcessID: DWORD): UnicodeString;
const
PROCESS_QUERY_LIMITED_INFORMATION = $00001000; //Vista and above
var
HProcess: THandle;
Lib: HMODULE;
QueryFullProcessImageNameW: TQueryFullProcessImageNameW;
S: DWORD;
begin
if IsWindowsVistaOrLater then
begin
Lib := GetModuleHandle('kernel32.dll');
if Lib = 0 then RaiseLastOSError;
@QueryFullProcessImageNameW := GetProcAddress(Lib, 'QueryFullProcessImageNameW');
if not Assigned(QueryFullProcessImageNameW) then RaiseLastOSError;
HProcess := OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, False, AProcessID);
if HProcess = 0 then RaiseLastOSError;
try
S := MAX_PATH;
SetLength(Result, S + 1);
while not QueryFullProcessImageNameW(HProcess, 0, PWideChar(Result), S) and (GetLastError = ERROR_INSUFFICIENT_BUFFER) do
begin
S := S * 2;
SetLength(Result, S + 1);
end;
SetLength(Result, S);
Inc(S);
if not QueryFullProcessImageNameW(HProcess, 0, PWideChar(Result), S) then
RaiseLastOSError;
finally
CloseHandle(HProcess);
end;
end
else
if IsWindows200OrLater then
begin
InitPsapiLib;
HProcess := OpenProcess(PROCESS_QUERY_INFORMATION or PROCESS_VM_READ, False, AProcessID);
if HProcess = 0 then RaiseLastOSError;
try
S := MAX_PATH;
SetLength(Result, S + 1);
if GetModuleFileNameExW(HProcess, 0, PWideChar(Result), S) = 0 then
RaiseLastOSError;
Result := PWideChar(Result);
finally
CloseHandle(HProcess);
end;
end;
end;
initialization
PsapiLib := 0;
finalization
DonePsapiLib;
使用示例:
procedure EnumProcesses(AStrings: TStrings);
var Snapshot: THandle;
Entry: TProcessEntry32;
Found: Boolean;
Count: Integer;
begin
Snapshot := CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (Snapshot = INVALID_HANDLE_VALUE) or (Snapshot = 0) then Exit;
try
ZeroMemory(@Entry, SizeOf(Entry));
Entry.dwSize := SizeOf(Entry);
if Process32First(Snapshot, Entry) then
repeat
try
AStrings.Add(GetFileNameByProcessID(Entry.th32ProcessID));
except
AStrings.Add('System process #' + IntToStr(Entry.th32ProcessID));
end;
ZeroMemory(@Entry, SizeOf(Entry));
Entry.dwSize := SizeOf(Entry);
until not Process32Next(Snapshot, Entry);
finally
CloseHandle(Snapshot)
end;
end;
procedure TForm11.FormCreate(Sender: TObject);
begin
EnumProcesses(ListBox1.Items);
end;
结果(Win64 上的 32 位示例应用程序,其中 Explorer 是 64 位应用程序):
Result (32 bit sample app on Win64 where Explorer is 64 bit app):