home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1993 #2
/
Image.iso
/
wp
/
dospel37.zip
/
DO-98.ZIP
/
DOM-10D.EXE
/
LZH-ZIP.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-11-08
|
787b
|
27 lines
echo off
rem door J.A.M.Kleijn, Rotterdam.
if not %%(%2)==%%() goto begin
echo
echo Batchfile for converting .LZH archive files to .ZIP files. This batch file
echo is used by DOMULTI.EXE, enter DOMULTI for more. Use MAKEZIP.BAT to convert
echo archive files to .ZIP format.
echo
echo Batchfile om .LZH archive files naar .ZIP file naar te converteren. Deze
echo batchfile wordt door DOMULTI.EXE aangeroepen, enter DOMULTI voor meer info.
echo Gebruik MAKEZIP.BAT om archivefiles naar .ZIP vorm te converteren.
goto einde
:begin
md\tempdir(
LHA e %1\%2.%3 \tempdir(\
PKZIP -m %1\%2 \tempdir(\*.*
goto klaar
:error
echo Error with %1\%2\.%3 !!, Boot system !!
pause
:klaar
if not exist %1\%2.ZIP goto error
if exist %1\%2.ZIP del %1\%2.%3
rd\tempdir(
:einde