how to find list of files inside zip file without unzipping it in c#.
There is a simple way to do this with sharpziplib :
using (var zipFile = new ZipFile(@"C:\Test.zip")) { foreach (ZipEntry entry in zipFile) { Console.WriteLine(entry.Name); } }