how to find list of files inside zip file without unzipping it in c#.
With sharpziplib:
ZipInputStream zip = new ZipInputStream(File.OpenRead(path)); ZipEntry item; while ((item = zip.GetNextEntry()) != null) { Console.WriteLine(item.Name); }
1.4m articles
1.4m replys
5 comments
57.0k users