home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem
- rem This batch file will run if a FILES.BBS entry is found for a file that
- rem you've imported or processed. It is useful for running programs which
- rem add download counters, file sizes, or other information to the file
- rem description.
- rem
- rem The following example would call WAIT.BAT, which would have been created
- rem either by ALFCESS.BAT (or VIRCHECK.BAT) during file processing. If WAIT.BAT
- rem was not found, it would go to `:doit' and run the commands found there.
- rem
- rem
- rem The variables for this batch file are:
- rem
- rem %1=Directory or Drive no backslash
- rem %2=File
- rem %3=Letter of current drive
- rem %4=Directory or Drive with backslash
- rem
- rem if not exist alf\alfrr.bbs cd %1
- rem if not exist alf\alfrr.bbs goto norr
- rem %1
- rem cd %1
- rem :norr
- rem if not exist WAIT.BAT goto doit
- rem CALL WAIT.BAT
- rem DEL WAIT.BAT
- rem goto end
- rem :doit
- rem redate %1%2
- rem call info %1%2 files.bbs
- rem :END
-