这是我正在尝试制作的脚本我正在尝试制作一个脚本来查看 Fido_Data 是否存在于我的桌面上,并带有 if 和 else 语句,但由于某种原因,它只是收到错误 Finder 出错:AppleEvent 处理程序失败。
tell application "Finder"
if exists folder [homePath & "Desktop/Fido_Data"] then
set FidoFolderExists to "yes"
else
display dialog homePath & "Desktop/"
make new folder at [homePath & "Desktop/"] with properties {name:"Fido_Data"}
end if
end tell