以下是我想做的事情:
IF file is already present in a finder window
tell finder to update...
ELSE
tell finder to reveal...
有没有办法确定相关文件是否已经显示在当前的Finder窗口中?我不想最终创建副本。
答案 0 :(得分:1)
reveal
命令应该已经这样工作了。如果另一个应用程序位于最前端,则activate
会关注Finder:
tell application "Finder"
reveal POSIX file "/usr/share/doc/bash/bash.html"
activate
end tell