0

因问题不明确而终止?所以我有答案吗?

需要在 Windows 资源管理器中的文件上单击鼠标左键,您会收到一条包含完整文件路径的消息。

示例:如果我在文件 win.ini 上单击鼠标显示 MsgBox:c:\windows\win.ini

OBS:拜托,我需要准备好示例的答案,因为我的英语很糟糕而且我是编程新手。

4

1 回答 1

5

你可以使用这样的东西:

^LButton::
    ; Select the file underneath the cursor
    Click
    ; Save whatever was in the clipboard
    t := Clipboard
    ; Copy the selected file
    Send, ^c
    ; Store the path
    path := Clipboard
    ; Restore the previous clipboard
    Clipboard := t
    ; Display the path
    msgBox % path
return

我已经将它绑定到 Ctrl+鼠标左键,因为将它绑定到鼠标左键会一直触发它。

应该注意的是,您已经可以在 Windows 中执行此操作,只需 Shift+右键单击文件并选择“复制为路径”。

于 2014-10-30T07:22:25.690 回答