archive 2.0.6 archive: ^2.0.6 copied to clipboard
Provides encoders and decoders for various archive and compression formats such as zip, tar, bzip2, gzip, and zlib.
import 'dart:io';
import 'package:archive/archive.dart';
import 'package:archive/archive_io.dart';
void main() {
// Read the Zip file from disk.
List<int> bytes = new File('test.zip').readAsBytesSync();
// Decode the Zip file
Archive archive = new ZipDecoder().decodeBytes(bytes);
// Extract the contents of the Zip archive to disk.
for (ArchiveFile file in archive) {
String filename = file.name;
if (file.isFile) {
List<int> data = file.content;
new File('out/' + filename)
..createSync(recursive: true)
..writeAsBytesSync(data);
} else {
new Directory('out/' + filename)
..create(recursive: true);
}
}
// Encode the archive as a BZip2 compressed Tar file.
List<int> tar_data = new TarEncoder().encode(archive);
List<int> tar_bz2 = new BZip2Encoder().encode(tar_data);
// Write the compressed tar file to disk.
File fp = new File('test.tbz');
fp.writeAsBytesSync(tar_bz2);
// Zip a directory to out.zip using the zipDirectory convenience method
var encoder = new ZipFileEncoder();
encoder.zipDirectory(new Directory('out'), filename: 'out.zip');
// Manually create a zip of a directory and individual files.
encoder.create('out2.zip');
encoder.addDirectory(new Directory('out'));
encoder.addFile(new File('test.zip'));
encoder.close();
}