0

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

JasonMArcher
  • 14,195
  • 22
  • 56
  • 52
Eli Braginskiy
  • 2,867
  • 5
  • 31
  • 46

1 Answers1

2

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

Nick
  • 13,238
  • 17
  • 64
  • 100