ファイル、フォルダの存在確認

そのまんまがあった...orz

tell application "Finder"
    exists 参照
ende tell
 on isExistItem(thePosixPath)
     try
         set theFilePath to thePosixPath as POSIX file
         set theAliasPath to theFilePath as alias
         return true
     on error
         return false
     end try
 end isExistPkg