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
Looks like here is what you need:
using (var za = ZipFile.OpenRead(path)) { foreach (var entry in sa.Entries) { using (var r = new StreamReader(entry.Open())) { //your code here } } }