Skip to main content
Participant
August 20, 2017
Question

How to read multiple .pdf files in a loop for batch processing

  • August 20, 2017
  • 2 replies
  • 1601 views

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!

This topic has been closed for replies.

2 replies

Legend
August 22, 2017

You'd write it.

Legend
August 20, 2017

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.

jpags98Author
Participant
August 22, 2017

What external app would you recommend for this task?