home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / wp / dospel37.zip / DO-98.ZIP / DOM-10D.EXE / ZIP-ARJ.BAT < prev    next >
DOS Batch File  |  1991-11-08  |  785b  |  27 lines

  1. echo off
  2. rem door J.A.M.Kleijn, Rotterdam.
  3. if not %%(%2)==%%() goto begin
  4. echo  
  5. echo Batchfile for converting .ARJ archive files to .ZIP files. This batch file
  6. echo is used by DOMULTI.EXE, enter DOMULTI for more. Use MAKEARJ.BAT to convert
  7. echo archive files to .ARJ format.
  8. echo  
  9. echo Batchfile om .ZIP archive files naar .ARJ file naar te converteren. Deze
  10. echo batchfile wordt door DOMULTI.EXE aangeroepen, enter DOMULTI voor meer info.
  11. echo Gebruik MAKEARJ.BAT om archivefiles naar .ARJ vorm te converteren.
  12. goto einde
  13. :begin
  14.  
  15. md\tempdir(
  16. PKUNZIP %1\%2.%3 \tempdir(
  17. ARJ m %1\%2 \tempdir(\*.*
  18. goto klaar
  19. :error
  20. echo Error with %1\%2\.%3 !!, Boot system !!
  21. pause
  22. :klaar
  23. if not exist %1\%2.ARJ goto error
  24. if exist %1\%2.ARJ del %1\%2.%3
  25. rd\tempdir(
  26. :einde
  27.