AutoHotKey:从Windows资源管理器复制文件,将路径粘贴到Notepad2
我正在寻找一种方法。 使用ArsClip的剪贴板栏,我看到当我在Windows资源管理器中选择文件并将其复制时,其完整路径存储在剪贴板上。 如果我继续选择Windows资源管理器并粘贴,该文件将被复制到当前文件夹,确定。 如果我去Notepad2(或任何文本编辑器)并粘贴,通常的行为是没有任何反应。我希望将文件路径粘贴为文本。 我正在尝试使用AutoHotKey实现此功能。我需要: 1) intercept paste command, not just Ctrl+V keystroke 2) verify if the pasting target is a text editor and not a file manager 3) when that's the case, I'd need to retrieve the file path from clipboard, which ArsClip is able to do 4) then …