svoid zip2zip(File inZip, ZipOutputStream outZip) ctex { temp ZipFile zipFile = new(inZip); for (entry : enumerationToIterator(zipFile.entries())) { print("Copying " + entry.getName()); ZipEntry e2 = new(entry.getName()); e2.setSize(e.getSize()); outZip.putNextEntry(e2); copyStreamAndCloseInput(zipFile.getInputStream(entry), outZip); } } svoid zip2zip(File inZip, ZipOutputStream outZip, IPred predicate) { zip2zip_withPredicate(inZip, outZip, predicate); }