home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CICA NT 1997 November
/
CICA_NT_CD-ROM_Walnut_Creek_November_1997.iso
/
_bbs
/
pcbtool
/
all.bat
next >
Wrap
DOS Batch File
|
1996-04-15
|
1KB
|
48 lines
REM To run this one batch file, change it here also.
if .%CDROM% == . goto cd_not_set
goto cd_set
:cd_not_set
goto end
:cd_set
REM ---Change this---
REM Set OUTPUT to the FULL target path for your DIR files
set output=%CDROM%\_bbs\pcb
REM ---Change this---
REM I set this globally, in ..\all.bat
REM To run this one batch file, change it here also.
if .%in_type% == . goto not_set
goto set
:not_set
echo in_type not set
goto end
:set
rem you shouldn't have to change anything below this.
REM This is the foreign language stuff. the default extension is
REM ".txt"
if .%in_language% == . goto not_set2
goto set2
:not_set2
set in_language=txt
:set2
echo y | del %output%\*.*
del dir.lst
del logfile
del ..\logfile
del dlpath.lst
rem this produces the index files for each directory
%cdrom%\_bbs\each_dir 1 %cdrom%\_bbs\dirs.%in_language% doit
rem this produces the dir.lst file
%cdrom%\_bbs\each_dir 1 %cdrom%\_bbs\dirs.%in_language% doit2
rem this produces the dlpath.lst file
%cdrom%\_bbs\each_dir 1 %cdrom%\_bbs\dirs.%in_language% doit3
:end