I have files (from 3rd parties) that are being FTP\'d to a directory on our server. I download them and process them even \'x\' minutes. Works great.
Now, some of th
using (ZipArchive archive = new ZipArchive(webResponse.GetResponseStream())) { foreach (ZipArchiveEntry entry in archive.Entries) { Stream s = entry.Open(); var sr = new StreamReader(s); var myStr = sr.ReadToEnd(); } }