Is there a built-in zip library in .NET 3.5?

2019-01-17 00:24发布

Is there a built-in zip library in .NET 3.5?

If not, what are the popular open source .net zip libraries.

8条回答
我命由我不由天
3楼-- · 2019-01-17 00:41

I will be second to recommend http://www.7-zip.org/sdk.html LZMA SDK, but it's not ZIP.

  1. It's in public domain
  2. It's FAST on decompression
  3. It has fully managed implementation
  4. It's much better compressing than ZIP/RAR
  5. It has very small footprint
  6. It can work as a stream
查看更多
Rolldiameter
4楼-- · 2019-01-17 00:45

System.IO.Compression has ZipArchive class as of .Net 4.5.

查看更多
该账号已被封号
5楼-- · 2019-01-17 00:50

Check out System.IO.Packaging.ZipPackage class.

查看更多
唯我独甜
6楼-- · 2019-01-17 00:52

7Zip will help and its available in multiple languages

查看更多
三岁会撩人
7楼-- · 2019-01-17 01:01

Try System.IO.Compression.DeflateStream.

查看更多
登录 后发表回答