Export metadata to a CSV file of the files contained in a .TXT file

Started by GuzmanR, January 25, 2025, 07:50:32 AM

Previous topic - Next topic

GuzmanR

Hi,

The .TXT file has a line with the absolute PATH of each of the files, for example:
   /snap/cups/1067/share/cups/data/form_english.pdf
   /snap/cups/current/share/cups/data/default-testpage.pdf
   /snap/cups/current/share/cups/data/confidential.pdf
   ...
The .TXT file can contain several million lines.

The process consists of generating a CSV file with the metadata of each of the files indicated in the .TXT file.

How can I do this?

Phil Harvey

You can't use ExifTool to generate a CSV file this large with the -csv option.  CSV is very inefficient for this because a large number of columns will be mostly empty.  I suggest using JSON format instead

exiftool -@ files.txt -j > out.json

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

StarGeek

From the docs on the -csv option
QuoteNote that this option is fundamentally different than all other output format options because it requires information from all input files to be buffered in memory before the output is written. This may result in excessive memory usage when processing a very large number of files with a single command.
"It didn't work" isn't helpful. What was the exact command used and the output.
Read FAQ #3 and use that cmd
Please use the Code button for exiftool output

Please include your OS/Exiftool version/filetype