Le fichier, "Test.file" dans le code ci-dessous n'existe pas, pourtant le script renvoie vrai. Pourquoi ? Qu'est-ce que je fais de 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