gpt4 book ai didi

delphi - 在64位系统中如何从PID获取系统的进程路径?

转载 作者:行者123 更新时间:2023-12-01 23:35:48 24 4
gpt4 key购买 nike

正如标题所说,我想从 PID 中找到系统的进程路径。我见过几个这样的线程:get the full path from a PID using delphi并用谷歌搜索了很多。

我尝试了很多函数,但所有函数都仅适用于 32 位进程。

有没有办法使用PID找到64位进程的路径?

最佳答案

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 位应用程序):

enter image description here

关于delphi - 在64位系统中如何从PID获取系统的进程路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22285024/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com