SevenZipSharp icon indicating copy to clipboard operation
SevenZipSharp copied to clipboard

Fork of SevenZipSharp on CodePlex

Results 75 SevenZipSharp issues
Sort by recently updated
recently updated
newest added

When I use this code it works fine: ``` string ArchiveFile = Path.Combine(Environment.CurrentDirectory, "Archive.7z"); SevenZipCompressor.SetLibraryPath(Path.Combine(Environment.CurrentDirectory, "7z.dll")); var compressor = new SevenZipCompressor { ArchiveFormat = OutArchiveFormat.SevenZip, DirectoryStructure = true, PreserveDirectoryRoot =...

Hi, We have few archives which we can extract manually using 7z,WinZip etc but when we are extract it using squidbox-sevenzipsharp we are getting below error : Could not extract...

How can I use multi threading functionality to compress files. On your first page you have mentioned customparameters with the refrence of 7zip.chm file, but in my current version I...

@squid-box SevenZipSharp throws an exception when calling **CompressDirectory** with flag **IncludeEmptyDirectories** set to *false* and an *searchPattern* that returns empty file collection: Repro with PowerShell: ```powershell Add-Type -AssemblyName .\SevenZipSharp.dll $c...

I have the following code that is trying to add files from a FileOpenPicker to an **existing** zip archive `... var sFiles = await pickerFiles.PickMultipleFilesAsync(); List files = new List();...

It would be great, if the library could support the additional compression algorithms implemented as part of: https://github.com/mcmilk/7-Zip-zstd ... especially ZSTD. I've tested it as part of a Hyper-V backup...

I am using AOT compilation in AvaloniaUI 11, and even if I set the DLL path, I still receive this prompt ![image](https://github.com/squid-box/SevenZipSharp/assets/62228539/27aa06f9-67b2-4a88-b26a-0d1bf064a843) I created a new console program and compiled...

I have the problem that I would like to cancel the extraction process of the SevenZipExtractor. Either via the extractor itself: Something like `SevenZipExtractor.CancelExtraction();` Or via the ProgressEventArgs in the...

Is SevenZipSharp supposed to be able to handle VHD/VHDX files? When I put one into the 7-zip GUI it loads each partition at the top level and then shows each...

I downloaded the zip file and on Windows 10 tried to extract files from an 7z archive, normal files are extracted but not the .exe files, my Winforms 4.7 application...