A Zib library written in Dart.
This library is in progress, and can partially extract Zip files. To be more specific, it can extract non-compressed Zip files such as Zip files containing small text files (they are rarely compressed).
Add as a dependency to your pubspec.yaml
. For example:
dependencies:
zip:
git: git://github.com/kaisellgren/DartZip.git
In the future when http://pub.dartlang.org is launched, there will be a more direct way to do this.
The following code extracts the test.zip
file to the given target folder. It works as long as the Zip file does not contain compressed files.
import 'package:dart_zip/zip.dart';
import 'dart:io';
void main() {
var currentPath = new Directory.current().path;
var zip = new Zip('test.zip');
zip.extractTo(new Path.fromNative("${currentPath}/test-extraction/"));
}
This code demonstrates how to dynamically add files to an archive and save it. Support for other actions will arrive at some point.
import 'package:dart_zip/zip.dart';
import 'dart:io';
void main() {
var zip = new Zip('test.zip');
zip.addFileFromString('something.txt', 'content goes here');
zip.save();
}
- No support for compression yet. Zips are stored without compression, and existing archives that are compressed can't be decompressed.
- Encryption.
- Signatures.
- More API stuff.
I'm kind of waiting to see if Dart gets an official support for compression algorithms as they would perform much better that way.
The library is licensed under MIT. Feel free to use it for any purpose.