home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Beijing Paradise BBS Backup
/
PARADISE.ISO
/
software
/
BBSDOORW
/
ZLAB_19C.ZIP
/
GIFT4B10.ZIP
/
PRO-R.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-01-19
|
692b
|
37 lines
@echo off
rem -- pro-r.bat - process "relist" archive contents - for ProDOOR 3.4x
rem -- %1-comport, %2-minutes, %3-resultfile, %4 sourcefile
prosm /chkpath testfile %0 >>%3
if errorlevel 1 goto end
testfile %4 zip lzh gif
if errorlevel == 98 goto cant_handle
if errorlevel == 3 goto gif
if errorlevel == 2 goto lzh
if errorlevel == 1 goto zip
goto end
:gif
giftest %4 /p:%1
goto end
:zip
ziptv -p%1 -t%2 >>%3 %4
if errorlevel 1 goto error
goto end
:lzh
lzhtv -p%1 -t%2 >>%3 %4
if errorlevel 1 goto error
goto end
:error
echo. >>%1
echo %0: Error processing %4 ! >>%1
goto end
:cant_handle
echo Sorry, %0 does not know how to process %4 ! >>%3
:end