using WinRAR or something else...need to zip thousands of files, each in their own zip file, and bring them all to one directory.
6/19/2007 4:52:08 PM
http://search.cpan.org/dist/Compress-Zlib/lib/Compress/Zlib.pm
6/19/2007 11:17:05 PM
Windoze or nix?
6/19/2007 11:22:42 PM
WinALLyou can do it in *nix easily.[Edited on June 20, 2007 at 8:37 AM. Reason : ]
6/20/2007 8:36:44 AM
I had to write a python script yesterday to do a 2-level deep directory search, you could do the same but just have it zip each file
6/20/2007 10:24:58 AM
i ended up using 'for' in the windows command prompt to recursively zip each individual file in all subdirs.for /r %V in (*) do zip %vsimilar to that[Edited on June 21, 2007 at 2:18 PM. Reason : /r]
6/21/2007 2:18:05 PM