我的Applecript告诉我找不到我想要的文件。但它就在这里,我可以使用终端中完全相同的路径打开它。 以下是提供相同错误的代码的简化版本:
set theFile to "~/Desktop/MyFile.csv" as alias
set theContent to read theFile as «class utf8»
答案 0 :(得分:2)
您的路径字符串对于applescript不正确。它期待像这样的HFS路径...... 路径:to:my:file:MyFile.csv,而不是POSIX路径。
我建议做这样的事情......
set theFile to ((path to desktop folder as string) & "MyFile.csv") as alias