gpt4 book ai didi

c# - SharpZipLib 提取的文件大小

转载 作者:行者123 更新时间:2023-11-30 21:25:55 26 4
gpt4 key购买 nike

有没有办法找出提取时未提取存档的总大小。

最佳答案

试试这个:

ZipFile zFile = new ZipFile(myZipFileName);
long uSize = 0;
foreach (ZipEntry e in zFile) {
if ( e.IsFile ) {
uSize += e.Size;
}
}

关于c# - SharpZipLib 提取的文件大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/414753/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com