0

I have two folders of PDF files. Each folder has a file with the same name, and I would like to combine those two files. My issue seems to be that I need to keep the original name of the files after I combine them. So its like:

Folder 1: 0001.pdf Folder 2: 0001.pdf

I would need to combine them together into one file, keep the name (0001.pdf) after its combined, and then do that for over 8000 files in one sitting.

I'm not too great with command-line/batching and stuff, but know a little bit. Also would preferably need it to be free as I am doing this on a jobsite computer.

mael'
  • 1,946
Matt
  • 1

1 Answers1

1

PDFtk, and Poppler are 2 possibilities I know of

With PDFtk

pdftk folder/file01.pdf folder2/file02.pdf folder3/file03.pdf cat output OutputFile.pdf

With Poppler

pdfunite folder1/file01.pdf folder2/file02.pdf folder3/file03.pdf OutputFile.pdf

Both applications are free as you requested. So hopefully a good answer for your needs.

somebody
  • 560