このアップルスクリプトは機能します
set myFile to (POSIX path "/Users/fred/Documents/data.dat")
このAppleScriptは機能しません
set myFileName to "/Users/fred/Documents/data.dat"
set myFile to (POSIX path myFileName)
エラーで失敗します
get POSIX file "/Users/fred/Documents/data.dat"
--> error number -1728
Result:
error "iTunes got an error: Can’t get POSIX file \"/Users/fred/Documents/data.dat\"." number -1728 from file "Macintosh HD:Users:drew:Desktop:Music:DIY:DIY-01.mp3"
変数を使用する場合、POSIXパスはファイル名に明示的な文字として二重引用符を含めているように見えます。私は何が間違っているのですか?
以下のスクリプトは問題を再現します。
tell application "Finder"
set newFileName to "/Users"
set newFile to POSIX file newFileName
end tell
ありがとう