Libraryless. Click here for Pure Java version (4679L/26K).
svoid zip2zip(File inZip, ZipOutputStream outZip) ctex { temp ZipFile zipFile = new(inZip); for (e : enumerationToIterator(zipFile.entries())) { print("Copying " + e.getName()); ZipEntry e2 = new(e.getName()); e2.setSize(e.getSize()); outZip.putNextEntry(e2); copyStreamAndCloseInput(zipFile.getInputStream(e), outZip); } } svoid zip2zip(File inZip, ZipOutputStream outZip, IPred<S> predicate) { zip2zip_withPredicate(inZip, outZip, predicate); }
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment