E edenbensal macrumors 6502 Original poster Oct 8, 2012 252 7 Mar 3, 2020 #1 How to sort photos by date taken in finder? NOT date created, date modified etc... MacOS Mojave up to date
How to sort photos by date taken in finder? NOT date created, date modified etc... MacOS Mojave up to date
adrianlondon macrumors 603 Nov 28, 2013 5,688 8,585 Switzerland Mar 3, 2020 #2 Does Date Created not match the date/time you took the photo? If not, then get the free Exiftool programme and use something like the following: Code: exiftool '-DateTimeOriginal>FileModifyDate' -F *.jpeg This assumes your EXIF data is correct. If you've modified the date/time in MacOS Photos, then it edits the IPTC fields rather than EXIF so you can first run: Code: exiftool '-datetimeoriginal<$IPTC:DateCreated $IPTC:TimeCreated' -overwrite_original *.jpeg Last edited by a moderator: Mar 3, 2020 Reactions: edenbensal and Lone Deranger
Does Date Created not match the date/time you took the photo? If not, then get the free Exiftool programme and use something like the following: Code: exiftool '-DateTimeOriginal>FileModifyDate' -F *.jpeg This assumes your EXIF data is correct. If you've modified the date/time in MacOS Photos, then it edits the IPTC fields rather than EXIF so you can first run: Code: exiftool '-datetimeoriginal<$IPTC:DateCreated $IPTC:TimeCreated' -overwrite_original *.jpeg