我有一個已編譯的AppleScript應用程序,我已將其移至我的Windows服務器。我想,然後插入一個文本文件到應用程序(它看起來像Windows上的zip文件):從文件中讀取的Applescript應用程序
myapplescript.app/Contents/Resources/MyNewDir/MyTxtFile.txt
所以,我的預編譯的AppleScript來嘗試從這個文本文件中讀取並獲得內容爲一個字符串。這是我做的:
set theFolder to POSIX path of (the path to me)
set theFile to theFolder & "Contents/Resources/MyNewDir/MyTxtFile.txt"
open for access theFile
set fileContents to (read theFile)
close access theFile
但是這是我得到的錯誤:
不能使 「/Users/mike/Desktop/myapplescript.app/Contents/Resources/MyNewDir/ MyTxtFile.txt」 到類型的文件