files could not be read

Started by snowdyD, December 04, 2019, 09:16:54 AM

Previous topic - Next topic

snowdyD

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

Phil Harvey

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
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

snowdyD

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