home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / bbs_ra / acf515r2.arj / SCANZIP.BAT < prev    next >
DOS Batch File  |  1991-04-27  |  1KB  |  44 lines

  1. @echo off
  2. REM MOVE.BAT - For ACFiles
  3. REM Arguments: %1 - Path to File, %2 - Filename, %3 - Filename Without .EXT
  4. REM Arguments: %4 - Extension of Filename (No ., just EXT)
  5. :
  6. :Check For ARC/LZH/PAK/ZOO/ZIP Files
  7. :IF One of those, goto ZIP
  8. :
  9. if %4 == ARJ goto zip
  10. if %4 == ARC goto zip
  11. if %4 == LZH goto zip
  12. if %4 == PAK goto zip
  13. if %4 == ZOO goto zip
  14. if %4 == ZIP goto zip
  15. :if it isn't, write original filename to filename via echo
  16. echo %3.%4 >filename
  17. goto end
  18. REM ZIP - This Converts to .ZIP, Scans via. McAffee's Scan
  19. :zip
  20. md 1111
  21. cd 1111
  22. if %4 == ARJ arj e %1%3
  23. if %4 == LZH lha e %1%3
  24. if %4 == PAK pak e %1%3
  25. if %4 == ZOO zoo e %1%3
  26. if %4 == ARC pkxarc %1%3
  27. if %4 == ZIP pkunzip %1%3
  28. scan *.*
  29. :if not zip file, then convert to .ZIP
  30. if not %4 == ZIP pkzip %1%3 *.*
  31. REM pkzip -z %1%3 <e:\acfiles\bbsad  <- UnRemark To Add .ZIP Comment BBSAD
  32. :make filename Yes to contain input for the delete statement
  33. echo Y >..\yes
  34. :redirect input from previous file
  35. del *.* <..\yes
  36. cd..
  37. rd 1111
  38. :delete file if it was converted (not .ZIP already)
  39. if not %4 == ZIP del %1%2
  40. :put new filename into file called FILENAME to use for new list, etc.
  41. :acfiles reads this in to find out what it should put as the filename for .LSTs
  42. echo %3.ZIP >filename
  43. :end
  44.