跳到主要内容

GetExePath 得到程序路径

🎯功能

得到指定窗口所属的程序路径

📜语法

Call Plugin.Window.GetExePath(窗口句柄)

📥参数

参数数据类型解释
窗口句柄长整型数要操作的窗口句柄

📤返回

字符串, 返回程序的完整路径

💡示例

Call RunApp("notepad.exe")
Delay 1500
//下面这句是得到当前最前面的窗口句柄
Hwnd = Plugin.Window.Foreground()
//下面这句是得到指定窗口所属的程序路径
spath=Plugin.Window.GetExePath(hwnd)
MessageBox "记事本的路径是:" & spath

📘备注