Is there a way to find out what the total size of the unextracted archive would be when extracted.
Asked
Active
Viewed 1,356 times
1 Answers
5
try this:
ZipFile zFile = new ZipFile(myZipFileName);
long uSize = 0;
foreach (ZipEntry e in zFile) {
if ( e.IsFile ) {
uSize += e.Size;
}
}

devio
- 36,858
- 7
- 80
- 143