archive icon indicating copy to clipboard operation
archive copied to clipboard

Dart library to encode and decode various archive and compression formats, such as Zip, Tar, GZip, ZLib, and BZip2.

Results 128 archive issues
Sort by recently updated
recently updated
newest added

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`: ``` ///...

I tried to decompress a BZip2 compressed file, the output is truncated and corrupted.

I was confusing because my app reporting that the sqlite file was corrupts. I use this package to extract the backed up data from server. Issue solved after downgrading the...

ZipDecoder contains a 'decodeBuffer' method to deal with (reasonably !!) large files by taking in a stream. But to make it more complete , it should have a listener interface...

Please add support of ZLib initial compression dictionary Like that: https://api.dart.dev/stable/3.0.6/dart-io/ZLibDecoder/dictionary.html

Hello everyone, I am actually receiving some data which is in base64 format from the backend. However when zipping then unzipping the file which consists of decoded base64, I am...

no error display, but when open the Excel file, it shows "File Corrupted" not worked code: final outputStream = OutputFileStream(xlsxFilePath); var outputBytes = ZipEncoder().encode(_archive)!; outputStream.writeBytes(outputBytes);

Flutter stable, 3.7.5 archive: ^3.3.6 ### my code: ``` import 'package:archive/archive_io.dart'; ... Archive archive = ZipDecoder().decodeBytes( byteData.buffer.asUint8List(), verify: true, password: '123456' ); ... ``` ### error: [VERBOSE-2:dart_vm_initializer.cc(41)] Unhandled Exception: Unsupported...

Hello. how to zip with password? or no options?? ``` final zipBytes = ZipEncoder().encode( archive, password: '123456' ); ```

fix garbled characters appear in the Chinese file name; issue #86、#174 and #238