home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if exist %2.zip goto found
- echo Error parameters
- echo zip2acb (B/b/u) (name of the *.zip file)
- echo Example: ZIP2ACB u tst (tst.zip convert into tst.acb)
- goto end
- :found
- md tmp$ >nul
- pkunzip -d %2 tmp$ >nul
- ACB %1 %2 tmp$\*.*
- echo ----!!! COMPARISON !!!----
- dir %2.*
- echo ---------------------------
- del %2.zip >nul
- deltree /Y tmp$ >nul
- :end