AHK获取正在运行的进程的路径
函数作用:获取当前运行的进程的exe的路径。
F2::MsgBox % 获取进程路径("Everything.exe") 获取进程路径(p){ DetectHiddenWindows,On Process,Exist,%P% if ErrorLevel>0 { PID=%ErrorLevel% WinGet,lujing,ProcessPath,ahk_pid %pid% return lujing } else return "Sorry,无法获取到进程路径!!!" }
这个好,赞