APFill batch

Technical support for APFill users
Post Reply
Tom_B
Posts: 2
Joined: 13 Apr 2009, 13:21

APFill batch

Post by Tom_B »

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?
support
AVPSoft support
AVPSoft support
Posts: 326
Joined: 01 Nov 2004, 21:25
Contact:

Post by support »

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\)
===============================================================

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>
is a short auto command for apfill it will
calculate coverage and store results in <PDFFile>.COVERAGE.TXT file
Post Reply