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

[SD-1882](http://bugtracker.sharpdevelop.net/issue/ViewIssue.aspx?id=1882), originally created on 1/27/2012 06:26:18 by David Pierson The ability to limit the size of zip to a maximum is desired. Thread: [Generating zipped package of specific size](http://community.sharpdevelop.net/forums/t/13611.aspx)

enhancement

Some zip compress app making wrong header, for example zip4j. So SharpZipLib throwing "Size mismatch: " error at Zip\ZipInputStream.cs line 620. // A csize of -1 is from an unpatched...

enhancement

[SD-1804](http://bugtracker.sharpdevelop.net/issue/ViewIssue.aspx?id=1804), originally created on 12/20/2010 02:25:14 by David Pierson Self extracting EXE [http://community.sharpdevelop.net/forums/t/2842.aspx](http://community.sharpdevelop.net/forums/t/2842.aspx) code supplied by Espen

enhancement

Not a new idea I think but wat about multithreading support inside the streams? We use a webserver framework nancyfx together with SharpZipLib to serve rather large files to all...

enhancement

Currently, TarEntry.cs, in `GetFileTarHeader`, trims all leading forward slashes. Trying to write `/home/username/foo.txt` as an entry would to write `home/username/foo.txt` This prevents writing absolute paths to the archive, and also...

enhancement
tar

When you call Finish() on the TarOutputStream, it doesn't flush everything. Finish(): ```cs public void Finish() { if ( IsEntryOpen ) { CloseEntry(); } WriteEofBlock(); } ``` However, Close() includes...

bug
tar
documentation

### Steps to reproduce 1. Create a new archive with at least two entry with same name 2. Try to call begin update ### Expected behavior I expect to update...

### Steps to reproduce 1.Created Tar using SharpZipLib. 2.doing untar on linux server. 3.File permission is getting revoked. Not able to read the file. ### Expected behavior should able to...

enhancement
tar
xplat

### Steps to reproduce 1. Initialize A FastZip object with _RestoreDateTimeOnExtract_ and/or _RestoreAttributesOnExtract_ is set to true 2. Extract a zip file that contains at least one folder ### Expected...

zip

Fixes #413. Fixes #162. _I certify that I own, and have sufficient rights to contribute, all source code and related material intended to be compiled or integrated with the source...