Adobe Acrobat Page Count Action for multiple files
Hello
I need to have the page number for multiple pdfs in a folder, as a list.
Filename 1 = 5 pages
Filename 2 = 24 pages
and so on
Ideally, the txt file would be saved within the folder.
Thank you!
Hello
I need to have the page number for multiple pdfs in a folder, as a list.
Filename 1 = 5 pages
Filename 2 = 24 pages
and so on
Ideally, the txt file would be saved within the folder.
Thank you!
Creating a text file is tricky, but you can easily output this information to the JS Console and then copy it from there.
The code to do that is this:
console.println(this.documentFileName + " = " + this.numPages + " pages");
Then run this code as a part of an Action on your files, open the JS Console (Ctrl+J) when the Action is finished, and copy its contents to a text file.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.