打开在 Mac 上的预览中打开的文件的文件夹

打开在 Mac 上的预览中打开的文件的文件夹

我正在预览中预览文件(某些应用程序为我打开了该文件)。

现在我觉得它很有趣,并想把它从 Finder 应用程序中放在一边,因为我想把它拖到 Google Drive 或某个云端。

我能以某种方式做到这一点吗,弹出一个带有选定文件的查找器?我在菜单中找不到任何东西,但这似乎很有用。

答案1

您可以使用文件菜单 > 移动到…并将其放在桌面等

答案2

这是我的解决方案:

  1. 新服务的自动化脚本: 在此处输入图片描述

  2. Applescript代码:

tell application "System Events"
    set activeApp to name of first application process whose frontmost is true
    if "TextEdit" is in activeApp then
        tell application "TextEdit"
            tell front document
                set apath to (its path) as text
                tell application "Finder" to open item (apath as POSIX file)'s container's container window
            end tell
        end tell
    else if "Preview" is in activeApp then
        tell application "Preview"
            tell front document
                set apath to (its path) as text
                tell application "Finder" to open item (apath as POSIX file)'s container's container window
            end tell
        end tell
    else
        display dialog ("This Automator works only from TextEdit/Preview app!")
    end if
end tell


tell application "Finder"
    activate
end tell


return
  1. 我将服务保存为“从文本编辑或预览打开文件夹”。服务文件应位于此处:/Users/<username>/Library/Services

  2. 系统设置 => 键盘 => 快捷方式 => 服务(从左侧面板)=> 常规部分 => 从文本编辑或预览 CTRL+ALT+CMD+F 打开文件夹

这个技巧非常非常有用:-)

答案3

3 个选项:

  • 右击并“移动到”

  • 按住“选项”并将其副本拖到您的桌面或其他文件夹/位置。拖动它时会创建它的副本。

  • 单击并复制(command+c),然后单击其他地方并粘贴(command+v)..也会创建它的副本...

相关内容