这是我的代码:
tell application "Finder"
move POSIX file "/Volumes/Toggle Desktop Icons/Toggle Desktop Icons/Install Files/Hide Icons.workflow" to folder "~/Library/Services"
end tell
它始终会出现此错误:无法获取文件夹“〜/ Library / Services”。
有任何帮助吗?这也需要在我运行代码的任何mac上工作。无需更改代码
感谢。
答案 0 :(得分:2)
您可以使用系统属性path to home folder
。为简单起见,使用本机mac HFS路径分隔符":"引用你的其余部分。
试试这个(在完整的源路径中添加回来),
tell application "Finder"
move POSIX file "/Volumes/.../Hide Icons.workflow" to folder (((path to home folder) as text) & "Library:Services")
end tell