Estoy intentando escribir un script de Apple para borrar todo el contenido de una carpeta excepto un archivo (stage.txt). Este es el script que he escrito:
tell application "System Events"
if exists folder "~/Library/Application Support/ABC/CS" then
delete (every item of folder "~/Library/Application Support/ABC/CS" whose name is not "stage.txt")
end if
end tell
Pero recibo el siguiente error: "System Events" obtuvo un error: AppleEvent handler failed." número -10000
Por favor, ayuda.
PD: Si alguien conoce algún buen tutorial para iniciarse en Apple script, por favor que lo comente también. ¡¡¡Gracias!!!