bous All American 11215 Posts user info edit post |
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 |
scud All American 10804 Posts user info edit post |
http://search.cpan.org/dist/Compress-Zlib/lib/Compress/Zlib.pm 6/19/2007 11:17:05 PM |
Blind Hate Suspended 1878 Posts user info edit post |
Windoze or nix? 6/19/2007 11:22:42 PM |
bous All American 11215 Posts user info edit post |
WinALL
you can do it in *nix easily.
[Edited on June 20, 2007 at 8:37 AM. Reason : ] 6/20/2007 8:36:44 AM |
MiniMe_877 All American 4414 Posts user info edit post |
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 |
bous All American 11215 Posts user info edit post |
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 %v
similar to that
[Edited on June 21, 2007 at 2:18 PM. Reason : /r] 6/21/2007 2:18:05 PM |