I have a URL that returns a zip file, and when I extract the content, it has lots of xml files inside. I need to read the files one by one, but I can not, never, use the HD, I must do everything in cache. Is it possible?
The other solutions that I've seen they all saves the downloaded file in a path.
There is this other post: How can I unzip a file to a .NET memory stream?, that gets close to answering my question, but in this case, they already have the ziped file save.
I my case I need to download, unzip, and read its content.