So far...
Today I have to make a script to rename all photos with the shooting date (EXIF)
I basically used this code in my Batch file:
Code: Select all
"C:\Program Files (x86)\XnView\nconvert" -recurse -overwrite -o $EXIF:DateTaken[%%Y-%%m-%%d_%%H%%M%%S] "F:\Photos\ *.jpg"
1/ the result files are found at the Partition root and not in the original folder (!).
2/ the "-recurse" option does not seem to be supported (!)
Tree of the "F:\Photos" folder:
Result command:
Result on Disk:
I have tried several change with the "-o" options but without any success.
I don't understand what I'm missing...
The goal is a "simple" renaming all the files of a folder recursively, and, of course, keeping the renamed files in their place
thanks in advance for any help!