[Solved] How to Read file properties from a zip file ..? [closed]


With DotNetZip you can read the files in a zip file as easy as:

string zipPath = @"c:\example\MyFile.zip";
using (zip archive = ZipFile.OpenRead(zipPath))
{
      foreach (ZipArchiveEntry entry in archive.Entries)
      {
          System.Console.WriteLine(entry.);
      }
 } 

2

solved How to Read file properties from a zip file ..? [closed]