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