I need to run APFill coverage on numerous files in a folder. What is the best way to do it?
If I command lined each file separately, does APFill run each file in sequence or does it run them concurrently?
APFill batch
You can use for example command FOR in command line or in .bat file
Here is an example (start it from C:\program files\apfill\)
===============================================================
===============================================================
If you use it in a .bat file you should replace % with %%
This command will satrt APFill with each PDF file from c:\PDFFolder
and wait while it calculates coverage.
is a short auto command for apfill it will
calculate coverage and store results in <PDFFile>.COVERAGE.TXT file
Here is an example (start it from C:\program files\apfill\)
===============================================================
Code: Select all
FOR %I IN ("C:\PDFfolder\*.pdf") DO APFill.exe "%I"
If you use it in a .bat file you should replace % with %%
This command will satrt APFill with each PDF file from c:\PDFFolder
and wait while it calculates coverage.
Code: Select all
APFill.exe <PDFfile>
calculate coverage and store results in <PDFFile>.COVERAGE.TXT file