特に、日付に基づいてファイルをコピーし (たとえば、同じファイルを 2 回コピーしない)、スクリプトを 1 時間に 1 回実行する場合は、この特定の回答を見たことがありません。
そして、私は 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
。残りは私が把握できると思います。
誰でも支援を提供できますか?