Hi All
Please I have a list of academic pdf files (around 2500) of books, journals ...etc
Is there any way to rename these pdf files according to its titles, authors, year ...etc
Thanks in advance
Rename PDF files according to its titles and authors (its metadata)?
Re: Rename PDF files according to its titles and authors (its metadata)?
Not with Everything, sorry. Not yet at least.
Re: Rename PDF files according to its titles and authors (its metadata)?
I did it with Total Commander, using Mutli-Rename tool and xPDFSearch plugin.
Re: Rename PDF files according to its titles and authors (its metadata)?
Personally, I would automate that with exiftool:
Assuming your PDF's are all in one folder:
- Download the stand-alone Windows executable exiftool.zip
- extract
- rename exiftool(-k).exe to exiftool.exe
- Copy exiftool.exe to the folder where your PDF's are
- Start CMD
- CD to the folder where your PDF's are
- Run this command
That will simulate renaming all PDF's to "Title - Author [Year].pdf"
If all is OK:
( testName was replaced with fileName)
Assuming your PDF's are all in one folder:
- Download the stand-alone Windows executable exiftool.zip
- extract
- rename exiftool(-k).exe to exiftool.exe
- Copy exiftool.exe to the folder where your PDF's are
- Start CMD
- CD to the folder where your PDF's are
- Run this command
Code: Select all
exiftool.exe -d %Y "-testName<${Title} - $Author.pdf [$CreateDate]" -ext pdf .
If all is OK:
Code: Select all
exiftool.exe -d %Y "-fileName<${Title} - $Author.pdf [$CreateDate]" -ext pdf .
Re: Rename PDF files according to its titles and authors (its metadata)?
Thanks, but it take along timeLeoLUG wrote: ↑Sun Dec 13, 2020 6:04 am I did it with Total Commander, using Mutli-Rename tool and xPDFSearch plugin.
Re: Rename PDF files according to its titles and authors (its metadata)?
Thanks so muchNotNull wrote: ↑Sun Dec 13, 2020 9:45 am Personally, I would automate that with exiftool:
Assuming your PDF's are all in one folder:
- Download the stand-alone Windows executable exiftool.zip
- extract
- rename exiftool(-k).exe to exiftool.exe
- Copy exiftool.exe to the folder where your PDF's are
- Start CMD
- CD to the folder where your PDF's are
- Run this commandThat will simulate renaming all PDF's to "Title - Author [Year].pdf"Code: Select all
exiftool.exe -d %Y "-testName<${Title} - $Author.pdf [$CreateDate]" -ext pdf .
If all is OK:( testName was replaced with fileName)Code: Select all
exiftool.exe -d %Y "-fileName<${Title} - $Author.pdf [$CreateDate]" -ext pdf .
I think you have mistake in your code
the code must be
Code: Select all
exiftool.exe -d %Y "-fileName<${Title} - $Author [$CreateDate]".pdf -ext pdf .
By the way, Thank you for guide me