archive
archive copied to clipboard
Support more Zip method(LZMA, bzip2)
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;
Also wanna mention 7z support here ;)
I added bzip2 decompression for zip files. I haven't added lzma yet. bzip2 is in 3.4.2.