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();                
ZipOutputStream s = new ZipOutputStream(df);
s.SetLevel(9);

byte[] data = (byte[])file.OpenBinary();
s.Write(data, 0, data.Length);
s.Finish();

s.Close();
byte[] outBuf = df.GetBuffer();        
Response.Expires = 0;                 
Response.Buffer = true;                 
Response.ClearContent();                
Response.AddHeader("content-disposition", "inline; filename="out.zip");
Response.ContentType = "application/zip";
Response.BinaryWrite(outBuf);
HttpContext.Current.ApplicationInstance.CompleteRequest();

When I try to open the out.zip file, it is saying that the zip file is either corrupted or damaged, and the crc value is showing as 000000.

What is the solution for this? Why is this error is occurring?

link|improve this question

60% accept rate
feedback

2 Answers

I'd take a guess, you should call:

s.Flush();
df.Flush();

Just before you invoke df.GetBuffer()

link|improve this answer
+1 as I have run into issues with SharpZipLib before that stemmed from me not flushing things when they needed to be flushed. – Shibumi Mar 28 '11 at 22:33
It is not working. Any other solution.? – Ramesh.kbvr Mar 29 '11 at 13:20
feedback

Try to explicitly flush the stream "s" before close.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.