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.
.NET 4.5 是否支持使用 zip64 进行压缩和解压缩?我知道一些第三方库(例如 dotnetzip)支持它,但我想知道 .NET 类(例如 ZipArchive 或 ZipFile)是否支持它?如果没有,那么我为什么能够使用 Windows 资源管理器或使用 Windows 的默认 zip 实用程序提取 zip64 的 zip 文件?
我可以确认 ZipArchive 将在需要时自动创建 zip64 档案,我没有测试过解压缩,但如果它不受支持,我会感到惊讶!
Dot NET 框架 4.5 在System.IO.Compression命名空间中提供了一些新类,允许我们这样做。
使用这些类,我们可以执行以下操作:
1.创建新的压缩文件。 2.打开和修改现有的Zip文件 3.解压Zip文件的内容
1.创建新的压缩文件。
2.打开和修改现有的Zip文件
3.解压Zip文件的内容