Il file "Test.file" nel codice sottostante non esiste, eppure lo script restituisce true. Perché? Cosa sto sbagliando?
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