home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / ALF20WB.ZIP / ALF.ZIP / ALFPOST.BAT < prev    next >
Encoding:
DOS Batch File  |  1995-11-29  |  976 b   |  33 lines

  1. @echo off
  2. rem
  3. rem  This batch file will run if a FILES.BBS entry is found for a file that
  4. rem  you've imported or processed. It is useful for running programs which
  5. rem  add download counters, file sizes, or other information to the file
  6. rem  description.
  7. rem
  8. rem  The following example would call WAIT.BAT, which would have been created
  9. rem  either by ALFCESS.BAT (or VIRCHECK.BAT) during file processing. If WAIT.BAT
  10. rem  was not found, it would go to `:doit' and run the commands found there.
  11. rem
  12. rem
  13. rem  The variables for this batch file are:
  14. rem
  15. rem    %1=Directory or Drive no backslash
  16. rem    %2=File
  17. rem    %3=Letter of current drive
  18. rem    %4=Directory or Drive with backslash
  19. rem
  20. rem if not exist alf\alfrr.bbs cd %1
  21. rem if not exist alf\alfrr.bbs goto norr
  22. rem %1
  23. rem cd %1
  24. rem :norr
  25. rem if not exist WAIT.BAT goto doit
  26. rem CALL WAIT.BAT
  27. rem DEL WAIT.BAT
  28. rem goto end
  29. rem :doit
  30. rem redate %1%2
  31. rem call info %1%2 files.bbs
  32. rem :END
  33.