Traction Software PDF & Print tools specialist

Search Site

MAIN
Products
News on Developments
Software Policy
Payment Options

Contact Us

How to group append pdf's together automatically in different folders with same filenames.


ALL PRODUCTS
Batch & Print Pro
Screen Grab Pro
SFV Checker
Rapid PDF Count
Rapid TIFF Page Count

ACROBAT PLUGIN'S FOR PC
PDF Content Split
PDF Content Split BatchPDF Page Numberer
PDF Page Numberer Batch
PDF Image Stamp
PDF Measure It
PDF Paper Stats
PDF Page Size Split
PDF Print Control

PDF SERVER PRODUCTS
Append PDF
Split PDF
PDF Text Stamp
PDF Image Stamp

 

 

Reputable companies we have sold tools to:

 
 

TOP TIPS - January 2007

How to group append pdf's together automatically in different folders with same filenames.
Products required are: Append PDF

1. extract the above to C:\WinAppendPdf
2. edit in notepad: C:\WinAppendPdf\group.bat and add the following:
echo off
rem echo *** Clear output directory
rem del /q .\out\*.*
echo **** Processing
cd test1
for %%a in (*.pdf) do ..\append.bat %%a


This will scan all files in C:\WinAppendPdf\test1 folder and then run append.bat which checks for the same filename in C:\WinAppendPdf\test2 and C:\WinAppendPdf\test3 folder.
3. edit in notepad: C:\WinAppendPdf\append.bat and add the following:

rem *** check for other files first ***
cd test2
IF NOT EXIST "%1" GOTO END
cd ..\test3
IF NOT EXIST "%1" GOTO END
cd ..


rem *** append files ***
cd test1
..\AppendPdf.exe "..\out\out-%1" "%1"
del /q "%1"
cd ../test2
..\AppendPdf.exe "..\out\out-%1" "%1"
del /q "%1"
cd ../test3
..\AppendPdf.exe "..\out\out-%1" "%1"
del /q "%1"
cd ../test1

:END


3. run group.bat   (double click to run)

4. you can then optionally schedule this script to run every n seconds/mins/hours using the windows task scheduler.
 

 






 

 

MORE TIPS

January 2007
How to group append pdf's together automatically in different folders with same filenames.

June 2006
How to uncompress gzip (.gz) files and print the contents automatically

April 2006
How to insert a pdf into a master pdf multiple times page by page

January 2006
How to batch print Crystal Report files. (.RPT)
How to batch print files on different trays multiple times

November 2005
How to add an image to pdf files before printing, in real-time.

October 2005
How to print PDF's without Adobe Reader or Acrobat.
How to add page numbers or other information like filenames to pdf files before printing, in real-time.
How to print a pdf file in groups of n pages for finishing e.g. 5 pages at a time.
How to add blank pages onto odd number pdf's.
How to round up total pages on pdf's to a divisible amount e.g. divisible by 4.
How to batch rename pdf documents using document properties.

September 2005
How to merge files of the same name from different folders.
How to add your PDF files document summary information in to a Database in less than 10 minutes.

June 2005
How to insert files into another file page by page.

May 2005

How to print the last page of every PDF file.

How to append 1 blank page to every odd page PDF file.

How to run Batch & Print Pro in the background like a service.