我知道tell application "Finder" to open POSIX file "/folder/path/"
将打开一个新的查找程序窗口,如何在当前查找程序窗口中打开一个文件夹?
我知道tell application "Finder" to open POSIX file "/folder/path/"
将打开一个新的查找程序窗口,如何在当前查找程序窗口中打开一个文件夹?
Answers:
我自己找到了答案:
tell application "Finder"
set the target of the front Finder window to (POSIX file "/folder/path/")
end tell