SevenZipSharp
SevenZipSharp copied to clipboard
Fork of SevenZipSharp on CodePlex
When this nuget package is published independently in .Net5, WPF and other applications, the application will not run public partial class App : Application { protected override void OnStartup(StartupEventArgs e)...
When I run such pseudocode, I got an IOException, it seems that resource not released after first uncompress. ``` try { uncompress(archive_path, target); } catch (SevenZip.ExtractionFailedException e) { if (e.Message.Contains("password"))...
fix for issue #145
I'm getting this message when extracting a multi volume archive created with SevenZipCompressor class. Options are: 7z format, LZMA2 compression and AES256 encryption. The message seams to appear only when...
Standard 7z do not have the support for Zstd compression algorithm, but there are any fork like [this](https://github.com/mcmilk/7-Zip-zstd) that support this file. Is it possible to add the support for...
Hi there, I am trying to compress from a stream downloaded from azure blob to a stream on azure blob container. Below is a snippet of the code I have:...
Hi Joel, I have a series of nested archives: ``` clonezilla-live-2.7.2-38-amd64.iso live\filesystem.squashfs usr\sbin\partclone.btrfs ``` The iso is available [here](https://sourceforge.net/projects/clonezilla/files/clonezilla_live_stable/2.7.2-38/clonezilla-live-2.7.2-38-amd64.iso/download) if you need. I can drill down using the following code:...
As discovered while investigating #25, it seems that * BeginExtractArchive * BeginExtractFile * BeginExtractFiles don't work when SevenZipExtractor is created with a FileStream instead of a file path.
I'm using the following code to obtain a list of archive entries through SevenZipExtractor in a UWP app: `foreach (ArchiveFileInfo entry in szFile.ArchiveFileData) { Debug.WriteLine(entry.FileName); }` All I get is...
public void ExtractFiles(ExtractFileCallback extractFileCallback) { DisposedCheck(); InitArchiveFileData(false); if (IsSolid) { // solid strategy } else { I commented the first branch, so that it always uses the implementation for non...