Access files within Zip in-memory without writing to disk?

Question:

The Chilkat Zip OpenFromMemory method for opening an in-memory image of a Zip file seems to do the ZIP in memory, but can I extract a file from the zip and then work on THAT file in-memory, never writing it to the hard drive?

Answer:

Yes, you can open the the in-memory Zip by calling OpenFromMemory, and then you can an individual file within the Zip by getting the ZipEntry object and calling Inflate (or InflateToString) : http://www.chilkatsoft.com/refdoc/csZipEntryRef.html#method006