Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法找出提取时未提取档案的总大小。
试试这个:
ZipFile zFile = new ZipFile(myZipFileName); long uSize = 0; foreach (ZipEntry e in zFile) { if ( e.IsFile ) { uSize += e.Size; } }