Exporting separate files to other directory

Started by Lin, October 08, 2014, 12:21:34 PM

Previous topic - Next topic

Lin

Hello, I'm struggling trying to make exiftool export separate .txt files to another directory (not where the pictures are). Is this even possible? I mean, using a command like this "exiftool -w txt" etcetera. I hope someone can help!

Regards Linda

StarGeek

#1
Take a look at the -o option.  You would add -o textdirectory for example to put the output files in "textdirectory".

Edit: Ooops, nevermind
* Did you read FAQ #3 and use the command listed there?
* Please use the Code button for exiftool code/output.
 
* Please include your OS, Exiftool version, and type of file you're processing (MP4, JPG, etc).

Phil Harvey

Hi Linda,

Actually, the -o is for output image files.  You use -w, but like this:

exiftool -w "some directory/%f.txt" ...

The -w option is very powerful.  Read the application documentation for complete details.

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