あるフォルダ内の写真をExifRenamerでリネームするアップルスクリプト


あるフォルダ内の写真をExifRenamerでリネームするアップルスクリプト

ExifRenamer : Exif情報から撮影日時情報を読み取って日付のファイル名にリネーム。
http://www.qdev.de/

                                                                                  • -

tell application "Finder"
activate
select every item of folder "AutoImport" of folder "Pictures" of home --home/ピクチャ/AutoImportフォルダ内のすべてのアイテムを選ぶ
open {selection} using application file "ExifRenamer.app" of folder "Applications" of startup disk --選んだファイルをExifRenamerで実行
end tell

                                                                                  • -