archive
archive copied to clipboard
Dart library to encode and decode various archive and compression formats, such as Zip, Tar, GZip, ZLib, and BZip2.
First of all, thank you for providing such a great Flutter package. As shown in the title, how do I check whether zip file is password protected? Any tips would...
how to decode .tgz file
I am trying to extract a zip file to a folder using this code, but I get the error `FormatException: Unexpected extension byte (at offset 68)` : ```dart String uri...
Hi, I got a problem "Process cannot access the file because it is being used by another process" when I was deleting a zip file after extracting it to disk...
Hi, When I try to unzip a ZIP file through the `extractFileToDisk()` method, the source ZIP file is not unlocked and if I try to delete it, I have this...
``Trying to extract files and get errors. Files in archive has Cyrillic names. If i use `extractFileToDisk` like this: void unzip(File file) { extractFileToDisk( file.path, file.path.substring(0, file.path.lastIndexOf('\\') + 1) +...
`FormatException: EOF reached without finding string terminator` will be thrown with using the InputFileStream / OutputFileStream for `.tar` file's encoding and decoding, if any file's path name is very very...
``` Doctor summary (to see all details, run flutter doctor -v): [√] Flutter (Channel stable, 3.3.9, on Microsoft Windows [版本 10.0.19045.2486], locale zh-CN) [√] Android toolchain - develop for Android...
With the current implementation, opening a huge archive file on the web requires loading the whole file into the RAM, which is not ideal. The issue is apparently solved on...
**Steps to reproduce** Execute dart below with [test.zip](https://github.com/brendan-duncan/archive/files/10500348/test.zip) ```dart import 'dart:io'; import 'package:archive/archive_io.dart'; void main() { // Read the Zip file from disk. final bytes = File('test.zip').readAsBytesSync(); // Decode the...