How to read multiple .pdf files in a loop for batch processing
Copy link to clipboard
Copied
Hi,
I'm trying to create a loop that effectively goes through a folder containing multiple pdf documents. This script is essentially meant to open and extract specific data from each pdf and export it to a single .txt file. The data export script has already been written, but I am having issues with setting up my loop to work through the folder.
This is the general layout of the loop I am currently working with:
while (***FOLDER HAS NEXT FILE***)
{
var thisFile = ***SAVE FILE NAME AS STRING VARIABLE***
app.openDoc(thisFile);
(insert data extraction and export script)
}
If this initial approach is ineffective, or if there is a more efficient alternative, please share! Thank you!
Copy link to clipboard
Copied
Batch processing/actions step over each file in turn. You do not code this, you just code for each file.
JavaScript run inside Acrobat cannot get a directory listing or next File.
External apps can do this and use IAC.
Copy link to clipboard
Copied
What external app would you recommend for this task?
Copy link to clipboard
Copied
You'd write it.

