これは私が作成しようとしているスクリプトです。デスクトップに 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