我想知道如何将运行AppleScript的同一目录中的文件复制到MAC上的硬编码文件夹,例如
CurrentFolder> /应用/ MYAPP /
干杯
柯
答案 0 :(得分:0)
set applescriptDir to path to me
set ASdirFolder to do shell script "dirname " & quoted form of posix path of applescriptDir
tell application "Finder" to move file "Path:To:this.file" to POSIX file baseASdir
这将获取您正在运行的Applescript的路径,获取Applescript的目录文件夹,然后将您想要的任何文件移动到该位置。