Hi,

I would like to append several postscript files in a folder to one temporary file in the same folder. I have been able to do it using a batch file as shown below:

REM !Merge all ps files (*.ps) to one

FOR %%i IN (C:\postscript\*.ps) DO (type %%i >> C:\postscript\postscript.tmp)

But I would like to be able to do this in VB. Can this be done using FileSystemObject? I have never used FileSystemObject since I am fairly new to VB so I would appreciate any help.