Hello,
I'm trying to rename a test image. I get the error message "The system cannot find the file specified.". This confuses me since I can do other
things on the same image. For instance, I can display the make and model of the camera, but not rename. I've included a copy of the command line
entries. Does anyone have any suggestions?
Thanks,
Xavier
C:\test>exiftool -make -model -ext jpg .
======== ./test.jpg
Make : Canon
Camera Model Name : Canon PowerShot SD870 IS
1 directories scanned
1 image files read
C:\test>exiftool '-filename<%f_${make}.%e' -ext jpg .
The system cannot find the file specified.
The problem is the quotes. In Windows shells you must use double quotes instead of single quotes.
- Phil
Yes, that was it! I looked over that command several times, but I never noticed the single quotes.
Thanks.
Xavier