In my application, I have a class that processes a zip archive using System.IO.Compression.ZipArchive . Now I want to save the archive entries to a file. How can i do this? I know that I can associate Stream with the archive, but in my case the archive creates without streams, and I cannot change the code:
var archive = ZipFile.Open(fileName, ZipArchiveMode.Create);
source share