home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / _BBS / PCBTOOL / ALL.BAT next >
DOS Batch File  |  2000-06-30  |  1KB  |  41 lines

  1. REM  ---Change this---
  2. REM Set CDROM to the CDROM drive letter that the disk is in (don't forget
  3. REM the ':'!)
  4. set cdrom=n:
  5. REM  ---Change this---
  6.  
  7. REM  ---Change this---
  8. REM Set OUTPUT to the FULL target path for your DIR files
  9. set output=n:\_bbs\pcb
  10. REM  ---Change this---
  11.  
  12. set in_type=pcb
  13.  
  14. REM  I set this globally, in ..\all.bat
  15. REM  To run this one batch file, change it here also.
  16. if .%in_type% == . goto not_set
  17. goto set
  18. :not_set
  19. set in_type=opus
  20. :set
  21.  
  22. rem you shouldn't have to change anything below this.
  23.  
  24. echo y | del %output%\*.*
  25. del dir.lst
  26. del logfile
  27. del ..\logfile
  28. del dlpath.lst
  29.  
  30. rem this produces the index files for each directory
  31. %cdrom%\_bbs\each_dir 1    %cdrom%\_bbs\dirs.txt   doit
  32.  
  33. rem this produces the dir.lst file
  34. %cdrom%\_bbs\each_dir 1    %cdrom%\_bbs\dirs.txt   doit2
  35.  
  36. rem this produces the dlpath.lst file
  37. %cdrom%\_bbs\each_dir 1    %cdrom%\_bbs\dirs.txt   doit3
  38.  
  39. rem this produces the global index file
  40. %cdrom%\_bbs\each_dir 1    %cdrom%\_bbs\dirs.txt   doit4
  41.