tree: 20d66a975bff7b5c251c71679fec8c8221268df5 [path history] [tgz]
  1. bin/
  2. example/
  3. lib/
  4. web/
  5. .gitignore
  6. .travis.yml
  7. analysis_options.yaml
  8. BUILD.gn
  9. CHANGELOG.md
  10. LICENSE
  11. pubspec.yaml
  12. README.md
archive/README.md

archive

Build Status

Overview

A Dart library to encode and decode various archive and compression formats.

The library has no reliance on dart:io, so it can be used for both server and web applications.

The archive library currently supports the following decoders:

  • Zip (Archive)
  • Tar (Archive)
  • ZLib [Inflate decompression]
  • GZip [Inflate decompression]
  • BZip2 [decompression]

And the following encoders:

  • Zip (Archive)
  • Tar (Archive)
  • ZLib [Deflate compression]
  • GZip [Deflate compression]
  • BZip2 [compression]