Hello,
I've read all the documentation but I can't figure the exact syntax to simply copy the exifs form the files in a directory to the files in b directory.
The filesin a directory and b directory have the exact same name but Photolemur has removed all exifs in b directory and I want to restore them from the original files in a directory.
I just can do it file by file :
exiftool -tagsFromFile d:\a\1.jpg d:\b\1.jpg
How can I do to do it for all the files in one command ?
Thank you !
The command is this:
exiftool -tagsfromfile d:\a\%f.%e d:\b
- Phil
Thanks a lot ! :)