Main Menu

ARG file help.

Started by zenyo.raver, January 22, 2017, 09:56:06 PM

Previous topic - Next topic

zenyo.raver

Hi guys.

Sorry for my bad english.

how can i put this command to arg file ?
exiftool -overwrite_original -all= -tagsFromFile @ -CreateDate -DatetimeOriginal C:\test\test.jpg

my goal is create an argument file that is delete all tags but except CreateDate DateTimeoriginal.

Phil Harvey

The arg file would be:

-overwrite_original
-all=
-tagsFromFile
@
-CreateDate
-DatetimeOriginal


Then the command is:

exiftool -@ argfile.txt DIR

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

zenyo.raver

@Phil Harvey
Thank you very much
it's work good now.