archive icon indicating copy to clipboard operation
archive copied to clipboard

Dart library to encode and decode various archive and compression formats, such as Zip, Tar, GZip, ZLib, and BZip2.

Results 128 archive issues
Sort by recently updated
recently updated
newest added

I am trying to unzip a file size of about 30 MB containing txt and mp3 files but it is not working when zip has password. It actually unzips file...

I'm facing with zipping large file on windows OS and MacOS. If I have a zip file larger than 2Gb, my application crashes when starting zip process. If I have...

zipDirectory method is failing to define filenames with accents and special characters with UTF8 encoding ```dart final encoder = ZipFileEncoder(); encoder.zipDirectory(Directory(destinationDirectory), filename: zipFileName); ``` ##### flutter ^3 ```yaml archive: ^3.3.1...

Hello. First of all, thank you for the best library to work with archives! However, the only thing that's missing is the RAR support. I understand that implementing it is...

Using this package, is it possible to list all the zip file entries (filenames) without actually extracting the zip file?

Is there any future support for **zstd** because its speed and ratio of compression is good. Thank you

Hi, How to extract in async mode? When im extracting data from zip it is freezing my UI. Thanks.

Consider the following code: ``` IO.File file = MemoryFileSystem().file('temp.html') ..writeAsString("123", mode: IO.FileMode.writeOnly, flush: true); file.readAsString().then((value) => print(value)); var encoder = ZipFileEncoder(); encoder.create(path + "/"+'temp.zip'); encoder.addFile(file); encoder.close(); ``` This code doesn't...

Extracting an archive file created with tar -J gives the following error: 022-05-25 16:39:44.090115-0600 Runner[27991:37388133] [VERBOSE-2:ui_dart_state.cc(198)] Unhandled Exception: LateInitializationError: Field '_input@76520520' has already been initialized. #0 LateError._throwFieldAlreadyInitialized (dart:_internal-patch/internal_patch.dart:194:5) #1 RangeDecoder._input=...

Is `././@LongLink` included in a tarball unconditionally? I don't remember seeing that in 3.1.6 (possibly, the long filenames support was added or somehow fixed later). In my understanding, there is...