posted 23 years ago
Stephanie,
Let me first ask why are you creating nested zip? First, it only complicates thing and you're not going to get better compression. In fact, if you take a zip file and keep on nesting it, your zip file will eventually just grow, because the zip algorithm cannot compress the original content anymore, but it does have to add header information. So all your doing with each nesting is just zipping a little bit of header information.
-Peter