私は Applescript に非常に慣れていないので、ファイルの種類と変更日に基づいていくつかのファイル/ディレクトリを開く簡単なスクリプトを作成しました。これらのファイルを変更した後、iBooks で開く必要があります。私のスクリプトに問題があるかどうか教えてください。
スクリプトは次のとおりです。
set theFolder to alias "Macintosh HD:::"
tell application "iBooks"
open (file of theFolder whose name extension is "epub" and modification date is less than (current date))
end tell