|
-
Mar 18th, 2000, 08:50 PM
#1
Thread Starter
New Member
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|