我还没有看到这个具体的答案,特别是在根据日期复制文件(例如,不复制同一个文件两次)和运行脚本时,比如每小时一次。
而且,我是 AppleScript 新手。因此,代码可能充满了错误。但是,你明白我要做什么:
on idle
Tell application "Finder"
set a to folder ":Volumes:G_Drive Mini:source"
set b to folder ":Volumes:MarkCapsule:destination"
if dateOfFile > currentDate then
move file of a to b
end if
return 3600
end tell
end idle
我不知道如何if dateOfFile < currentDate then
工作。其余的,我想,我可以弄清楚。
任何人都可以提供帮助吗?