如何使用Applescript在Finder中更新/显示

时间:2013-02-13 02:56:21

标签: applescript finder

以下是我想做的事情:

IF file is already present in a finder window
    tell finder to update...
ELSE
    tell finder to reveal...

有没有办法确定相关文件是否已经显示在当前的Finder窗口中?我不想最终创建副本。

1 个答案:

答案 0 :(得分:1)

reveal命令应该已经这样工作了。如果另一个应用程序位于最前端,则activate会关注Finder:

tell application "Finder"
    reveal POSIX file "/usr/share/doc/bash/bash.html"
    activate
end tell