Estoy tratando de obtener el nombre del archivo usando AppleScript con el siguiente código:
tell application "Finder"
set filename to name of "/Users/mainuser/Desktop/Test/shot.png" // should return shot.png
display dialog filename
end tell
Recibo un error que dice:
error "Can’t get name of \"/Users/mainuser/Desktop/Test/shot.png\"." number -1728 from name of "/Users/mainuser/Desktop/Test/shot.png"
¿Qué estoy haciendo mal?