我正在尝试使用 AppleScript 在 Finder 中打开一个文件夹。以下是我的代码。我希望文件夹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