楼主解决了没有
private int GetZipFileTop(string sourceZipPath)
{
int top = 0;
try
{
ICSharpCode.SharpZipLib.Zip.ZipFile zip = new ZipFile(sourceZipPath);
top = (int)zip.Count;
zip.Close();
}
catch (Exception)
{
return 0;
throw;
}
return top;
}
1年前的问题了,我不记得了,现在我看代码是用ICSharpCode.SharpZipLib.Zip这个来获取可以得到压缩包中的文件个数