Soy nuevo en programación y AppleScript y tengo muchos problemas con el manejo de errores.
¿Alguien podría compartir su manejo de errores para operaciones de archivos como mover / trash archivos? Aquí está mi código hasta ahora:
try
tell application "Finder" to open file file_path
on error e number n
if e contains "Can’t get file" then say "mount external drive" --file not found, maybe this hard drive is not mounted
if e is x then something
end try