El archivo, "Test.file" en el código de abajo no existe, pero el script devuelve true. ¿Por qué? ¿Qué estoy haciendo mal?
set thePath to (path to application support folder from user domain)
if exists thePath & "Test.file" then
display dialog "The file was found!" buttons {"OK"} default button 1
else
display dialog "The was file wasn't found." buttons {"OK"} default button 1
end if