How to find uncompressed size of ionic zip file

后端 未结 2 811
慢半拍i
慢半拍i 2021-01-14 07:15

I have a zip file compressed using Ionic zip. Before extracting I need to verify the available disk space. But how do I find the uncompressed size before hand? Is there any

2条回答
  •  耶瑟儿~
    2021-01-14 07:40

    public static long GetTotalUnzippedSize(string zipFileName)
    {
        using (ZipArchive zipFile = ZipFile.OpenRead(zipFileName))
        {
            return zipFile.Entries.Sum(entry => entry.Length);
        }
    }
    

提交回复
热议问题