tree: b47ded64e9fdb5c7ea4f9a92d916735d974cc06c [path history] [tgz]
  1. bin/
  2. example/
  3. lib/
  4. web/
  5. analysis_options.yaml
  6. BUILD.gn
  7. CHANGELOG.md
  8. LICENSE
  9. LICENSE-other.md
  10. pubspec.yaml
  11. 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]
  • XZ [decompression]

And the following encoders:

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