检索指定进程可执行文件的完整路径.
#Include <WinAPIEx.au3>
_WinAPI_GetProcessFileName ( [$PID] )
$PID | [可选参数] 进程 PID. 默认 0, 为当前进程. |
成功: | 返回文件的完整路径. |
失败: | 返回空字符串,设置 @error 标志为非 0 值. |
在MSDN中搜索
#Include <WinAPIEx.au3>
Opt('MustDeclareVars', 1)
Global $ID = ProcessExists('SciTE.exe')
If $ID Then
ConsoleWrite(_WinAPI_GetProcessFileName($ID) & @CR)
EndIf