Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
337 views

Is it safe to call ICsharpCode.SharpZipLib in parallel on multiple threads

We are currently using for compression the GZipOutputStream class of ICsharpCode.SharpZipLib library. We do it from a single thread. I want to split my input data stream into chunks and compress them ...
2
votes
2answers
387 views

ICSharpCode.SharpZipLib.Zip crc32 problem

I am using ICSharpCode.SharpZipLib.Zip to compress the files and folders and pass it as memorystream using response.Binary write. Here is my code: MemoryStream df= new MemoryStream(); ...
2
votes
1answer
493 views

How do I add files to an archive using SharpZipLib with no compression?

How do I add files to a Zip archive using SharpZipLib with no compression? Examples on Google seem to be woefully thin.
2
votes
2answers
3k views

How to use ICSharpCode.ZipLib with stream?

I'm very sorry for the conservative title and my question itself,but I'm lost. The samples provided with ICsharpCode.ZipLib doesn't include what I'm searching for. I want to decompress a byte[] by ...
1
vote
1answer
42 views

SharpZipLib create an archive with an in-memory string and download as an attachment

I use DotNetZip to create a zip archive with an in memory string and download it as an attachment with the following code. byte[] formXml = ...
1
vote
1answer
234 views

Reverse action of ICSharpCode…InflaterInputStream in C#

I'm using ICSharpCode.SharpZipLib.dll for compress and decompress data. I have the following code that performs inflation of data: public static byte[] ZLibDecompress(byte[] zLibCompressedBuffer) { ...
0
votes
1answer
43 views

ICSharpZipLib - unziping file issue

I have an application in ASP.NET where user can upload ZIP file. I'm trying to extract file using ICSharpZipLib (I also tried DotNetZip, but had same issue). This zip file contains single xml ...
0
votes
1answer
289 views

How with sharpziplib get a zip file in memorystream or byte array format and unpack it

I have an app that downloads from ftp and gets the format in memorystream or byte array-it gets the zip file ALREADY ZIPPED ,how can i use sharpziplib with this input to unpack that content to a ...
0
votes
2answers
464 views

ICSharpCode.SharpZipLib.Zip example with crc variable details

I am using icsharpziplib dll for zipping sharepoint files using c# in asp.net When i open the output.zip file, it is showing "zip file is either corrupted or damaged". And the crc value for files in ...
0
votes
2answers
610 views

System.IOException when opening file with File.OpenRead

I get the following exception when I open a file for unzipping it's contents. It happens when I have the file selected in Windows Explorer, or mouse over it showing a tooltip. System.IO.IOException ...
0
votes
0answers
222 views

ICSharpCode zipfile creation error!

The following code works on my machine but not in server: using (ZipFile zipFile = ZipFile.Create(outPath)) { if (!includeFolders) { zipFile.NameTransform = new ...