Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make EXIF Tool Replace Original File

Tags:

c#

exif

exiftool

I'm using the EXIF Tool to Copy all the EXIF Tags using the following command

exiftool -TagsFromFile file1 file2

But if a file named file2 already exists in the source folder, I need the EXIF Tool to replace it.Currently, it is renaming the file as _orginal

How can I do this?

like image 471
techno Avatar asked May 24 '17 03:05

techno


1 Answers

Add the -overwrite_original option to your exiftool command

like image 84
PhilHarvey Avatar answered Sep 17 '22 19:09

PhilHarvey