Looking for a mass zipper

  • Thread starter Thread starter Fran
  • Start date Start date
F

Fran

I need to zip a large number of folders separately to <foldername>.zip, is
there an archiver that supports that operation on multiple folders?
 
A few more.

FilZip
http://www.filzip.com/en/index.html
http://www.bestwebdownloads.com/Sof...ware/Free/Download_Tools/ZIP_Tools/index.html
http://www.filzip.com/en/download.html

MultiZipper
http://www.itsfree4u.com/util.shtml
http://www.itsfree4u.com/cgi-bin/load.cgi?http://www.multizipper.com/download/MultiZipper30beta.exe

ZipALot
http://www.ractive.ch/gpl/zipalot.html

DzMultiU
http://fileforum.betanews.com/detail/DzMultiU/1100231857/1

dcZip
http://websites.cable.ntl.com/~david.campaign/dczip.html
What is the maximum number of files that can be compressed at one time?
The current version of dcZip has a limit of about 50,000 files. But
keep an eye on the memory ( menu option help | memory )

ExtractNow
http://www.extractnow.com/
ExtractNow lets you extract multiple archives with the click of a
button.
 
Thanks, MyZippa did the job. Most of the others, however, don't seem to be
able to zip multiple folders, only files.
 
Fran said:
I need to zip a large number of folders separately to <foldername>.zip, is
there an archiver that supports that operation on multiple folders?

for /d %I in (*) do <your favourite CLI zip utility> <recurse option>
%I.zip %I\*
 
Back
Top