Merge specific tags in source folder, output to target folder

Started by dwlott, April 07, 2022, 05:19:30 PM

Previous topic - Next topic

dwlott

Hello again,
I am successfully merging specific tags for all files in a source folder with this command.  But I want the output files to go to a target folder.  Where do I insert the target folder string? 

c:\exiftool\exiftool "-Title<$IPTC:City, $IPTC:Province-State" "c:\exiftool\mySourceFolder"

After the above command, the "Title" tag value looks great.  "Dallas, Texas" for example.  But I would like the output files to go to "c:\exiftool\myTargetFolder".

Thanks again for your help guys. 

Phil Harvey

c:\exiftool\exiftool "-Title<$IPTC:City, $IPTC:Province-State" "c:\exiftool\mySourceFolder" -o  "c:\exiftool\myTargetFolder"

Files will be copied when -o is used.  To move them instead, add -overwrite_original.

- 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 ($).

dwlott