home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
High Voltage Shareware
/
high1.zip
/
high1
/
DIR8
/
DOSPEL37.ZIP
/
DO-98.ZIP
/
DOM-10D.EXE
/
MAKELZH.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-11-08
|
1KB
|
38 lines
echo off
rem door J.A.M.Kleijn, Rotterdam, 90-04-28
if not %%(%1)==%%() goto begin
ECHO
Echo Batchfile for converting .ZIP .PAK .ARC ARJ archive files to .LZH files.
ECHO PKZIP/PKUNZIP, PAK, LHARC, PKARC/PKXARC, ARJ must be available from current
echo directory.
echo For more info enter DOMULTI. By Han Kleijn, Rotterdam NL.
echo
echo Usage: MAKEARC STARTDIRECTORY
echo
goto einde
:begin
if not exist ZIP-LZH.bat echo ZIP-LZH.BAT NOT FOUND !
if not exist PAK-LZH.bat echo PAK-LZH.BAT NOT FOUND !
if not exist ARC-LZH.bat echo ARC-LZH.BAT NOT FOUND !
if not exist ARJ-LZH.bat echo ARJ-LZH.BAT NOT FOUND !
if not exist ZIP-LZH.bat goto einde
if not exist PAK-LZH.bat goto einde
if not exist ARC-LZH.bat goto einde
if not exist ARJ-LZH.bat goto einde
echo
DOMULTI %1
echo
echo The files in these directories will be converted.
echo Hit Crtl-C to stop or
pause
DOMULTI %1 *.ZIP ZIP-LZH
DOMULTI %1 *.PAK PAK-LZH
DOMULTI %1 *.ARC ARC-LZH
DOMULTI %1 *.ARJ ARJ-LZH
echo
echo R E A D Y
echo
:einde