Sto cercando di ottenere il nome del file usando AppleScript con il seguente codice:
tell application "Finder"
set filename to name of "/Users/mainuser/Desktop/Test/shot.png" // should return shot.png
display dialog filename
end tell
Ricevo un errore che dice:
error "Can’t get name of \"/Users/mainuser/Desktop/Test/shot.png\"." number -1728 from name of "/Users/mainuser/Desktop/Test/shot.png"
Cosa sto facendo male?