SharpZipLib icon indicating copy to clipboard operation
SharpZipLib copied to clipboard

#ziplib is a Zip, GZip, Tar and BZip2 library written entirely in C# for the .NET platform.

Results 142 SharpZipLib issues
Sort by recently updated
recently updated
newest added

Fixes #676 Or rather, allows it to be handled with a derived class: ```cs new FastZip().CreateZip(outStream, srcDir, recurse: true, new CustomFileSystemScanner(filter), leaveOpen: true); ``` ```cs class CustomFileSystemScanner: FileSystemScanner { static...

this branch contains changes needed for the upcoming release, mainly related to .NET 6 The new target frameworks will be: - .NET Standard 2.0 (for .NET framework 4.6.2+) - .NET...

### Steps to reproduce ``` var httpClient = new HttpClient(); var stream = await httpClient.GetStreamAsync("https://files.pythonhosted.org/packages/04/b5/fea02ac9306b5d56a5019133f4edda6c9e3cfbd1b5ce663158486ba77eea/diffpy.srfit-1.3.tar.gz"); var gzipStream = new GZipInputStream(stream); var tarStream = new TarInputStream(gzipStream, Encoding.ASCII); while (tarStream.CanRead) { var...

When I use ZipOutputStream.Password each entry in the created zip-file is password-protected. I expected the zip-file itself to be password-protected. Is it possible to password-protect the zip-file I want to...

Original title: _在设置了密码的zip文件内尝试读取txt文本,但会遇到一个错误_ ### Steps to reproduce ```cs IEnumerator GetZipStr(string zipPath, string fileName) { string data = string.Empty; ZipInputStream zip = new ZipInputStream(File.OpenRead(zipPath)); FileStream filestream = new FileStream(zipPath, FileMode.Open, FileAccess.Read);...

### Steps to reproduce 1. Create archive from /some/directory using SharpZipLib: recursive, set RootPath to /some/directory 2. Extact this archive using SharpZipLib ### Expected behavior Archive should be extracted ###...

Compress the same content, but do not get the same MD5 value. How can I get the same MD5 value?

Hello Team, sorry to bother you with this question. Can you kindly point me to an example how to create multi-volume archive, please?

enhancement
question
zip

This pull request continues the work of @Numpsy and replaces Pull Request #381 The issue with the HMAC calculation in the original pull request was that it always decrypted and...

ZipFile.add will make a lot of tmp file to 'data/local' path so do not work in android how can i use it? zipFile.Add($"{VersionDownloadPath(textureSurface.md5)}", index); zipFile.CommitUpdate();