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 specific place on my harddrive

link|improve this question

73% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Wrap the raw data in a MemoryStream and then pass this to the zip library instead of a FileStream.

link|improve this answer
thanks so very much! it worked :) – Blue Gene Apr 21 '11 at 19:44
feedback

Your Answer

 
or
required, but never shown

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