archive icon indicating copy to clipboard operation
archive copied to clipboard

Support more Zip method(LZMA, bzip2)

Open richshaw2015 opened this issue 2 years ago • 2 comments

for example generate a zip file with LZMA/bzip2 method from 7z tool:

7zz a -p123 -tzip test.zip test.db -mm=LZMA -mx=9

curently only support DEFLATE and STORE

/// A file contained in an Archive.
class ArchiveFile {
  static const int STORE = 0;
  static const int DEFLATE = 8;

richshaw2015 avatar May 08 '23 22:05 richshaw2015

Also wanna mention 7z support here ;)

89pleasure avatar Jun 04 '23 08:06 89pleasure

I added bzip2 decompression for zip files. I haven't added lzma yet. bzip2 is in 3.4.2.

brendan-duncan avatar Sep 23 '23 16:09 brendan-duncan