Skip to content

Instantly share code, notes, and snippets.

@luismtorresv
Created December 22, 2022 23:19
Show Gist options
  • Save luismtorresv/943ce5f946c7c5b8a36a435cf5ee2c29 to your computer and use it in GitHub Desktop.
Save luismtorresv/943ce5f946c7c5b8a36a435cf5ee2c29 to your computer and use it in GitHub Desktop.
exiftool script to move photos from one folder to another. organizes by the year/month/day folder hierarchy. works on macos, not windows.
#!/bin/sh
fromdir=""
todir=""
exiftool -d '%Y/%m/%d' '-Directory<'$todir'/$DateTimeOriginal' $fromdir
@luismtorresv
Copy link
Author

Or the MediaCreateDate tag.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment