Я пытаюсь открыть папку в Finder с помощью AppleScript. Ниже приведен мой код. Я хочу, чтобы папка WorkSpace
открывалась в Finder, но она открывает родительскую папку /Volumes/MyMacDrive/Mani
и выделяет папку WorkSpace
. Я хочу содержимое папки WorkSpace
, но все, что я получаю, это его родительское содержимое. Что мне здесь не хватает...?
property the_path : "/Volumes/MyMacDrive/Mani/WorkSpace/"
set the_folder to (POSIX file the_path) as alias
tell application "Finder"
activate
if window 1 exists then
set target of window 1 to the_folder
else
reveal the_folder
end if
end tell