Is there an easy way to recursively ZIP a directory that may or may not contain any number of files and any number of levels of subdirectories?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use: http://java.sun.com/j2se/1.4.2/docs/api/ and: http://www.java-forums.org/new-java/4123-how-do-you-recursively-traverse-through-file-folders.html |
|||
|
|
|
|||
|
|
|
I use the ZipFileSystem implementation in ruby with great success, though I've never used it in java. You might want to check it out: |
|||
|
|
ZipFile.AddDirectory();– Cheeso Mar 8 '10 at 22:36