Eli Waxman
Eli Waxman

Reputation: 2897

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

Upvotes: 0

Views: 1583

Answers (1)

Nick
Nick

Reputation: 13414

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

Upvotes: 2

Related Questions