SevenZipSharp icon indicating copy to clipboard operation
SevenZipSharp copied to clipboard

Fork of SevenZipSharp on CodePlex

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

Hi @tomap, Since it seems there's no rush to take on this repo, I could do it - admittedly I'm not very familiar with it, but hopefully it's not worse...

The readme reads that the project is under the LGPL v3.0. But the license.txt is showing LGPL v2.1. It looks like the license.txt should be updated. Which one is it...

Just wanted to see this this fork has the ability to extract a password protected file from within a non-password protected archive? The current version of Sevenzipsharp does not appear...

My code: `_zipEncode = new SevenZipCompressor(); _zipEncode.TempFolderPath = _workingDir; _zipEncode.ArchiveFormat = OutArchiveFormat.SevenZip; _zipEncode.CompressionMode = CompressionMode.Create; _zipEncode.CompressionMethod = CompressionMethod.**Lzma2**; _zipEncode.CompressionLevel = CompressionLevel.Ultra;` If I set the parameters (Lzma2) SevenZipSharp does not...

Line 763, 764 is, _inStream.Dispose(); _inStream = null; When I use this class, _inStream is set null, so the error is occured at above lines, Why don't you check _instream...

Hello, I have a feeling this is the only SevenZipSharp project with commits within the last months. Why does the SevenZipSharp free the 7z.dll after many compress operations? I think...