ExifTool Forum

ExifTool => Newbies => Topic started by: snowdyD on December 04, 2019, 09:16:54 AM

Title: files could not be read
Post by: snowdyD on December 04, 2019, 09:16:54 AM
Hi there,

Am running macOS Catalina, and I'm just getting started with exiftool, but am struggling to get it to rename files based on capture date.

From what I've read, using the command

exiftool 'filename<CreateDate' -d %y%m%d%%-c.%%le /sorted/

should rename the files in /sorted based on their capture date.

Instead I'm getting an error each time,

Error: File not found - filename<CreateDate
Error: File not found - /sorted/
    0 image files read
    2 files could not be read


I've also tried running the command while in the 'sorted' folder, doing so just returns Error: File not found - filename<CreateDate.

Can anyone suggest what I'm doing wrong please?

Thanks in advance!

Martin
Title: Re: files could not be read
Post by: Phil Harvey on December 04, 2019, 09:25:09 AM
Hi Martin,

You need a dash before the tag name.  Also "/sorted/ would only work if the "sorted" directory is at the top level of your hard disk.  If it is in the current directory, use "sorted" instead.  So the command would be:

exiftool '-filename<CreateDate' -d %y%m%d%%-c.%%le sorted

or use "~/sorted" if it is in your home directory.

or use "." to represent the current directory if you are in the sorted directory.

- Phil
Title: Re: files could not be read
Post by: snowdyD on December 04, 2019, 10:02:16 AM
Thank you so much Phil, I've been trying to figure out what I was doing wrong for hours!

All working now  ;D

Thanks again,

Martin