Soy nuevo en la programación y AppleScript y tengo muchos problemas con el manejo de errores.
Podría alguien compartir su manejo de errores para el archivo de las operaciones de mover/archivos basura? Aquí está mi código hasta el momento:
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