C# 使用原生 System.IO.Compression 实现 zip 的压缩与解压
zip 是一个非常常见的压缩包格式,本文主要用于说明如何使用代码 文件或文件夹压缩为 zip压缩包及其解压操作,
我们采用的是 微软官方的实现,所以也不需要安装第三方的组件包。使用的时候记得 using System.IO.Compression;
/// <summary> /// 将指定目录压缩为Zip文件 /// </summary> /// <param name="folderPath">文件夹地址 D:/1/ </param> /// <param name="zipPath">zip地址 D:/1.zip </param> public static void CompressDirectoryZip(string folderPath, string zipPatjsh) { DirectoryInfo directoryInfo = new(zipPath); if (directoryInfo.Parent != null) { directoryInfo = directoryInfo.Parent; } if (!directoryInfo.Exists) { directoryInfo.Create(); } ZipFile.CreateFromDirectory(folderPath, zipPath, CompressionLevel.Optimal, false); }
其中 CompressionLevel 是个枚举,支持下面四种类型
枚举 | 值 | 注解 |
---|---|---|
Optimal | 0 | 压缩操作应以最佳方式平衡压缩速度和输出大小。 |
Fastest | 1 | 即使结果文件未可选择性地压缩,压缩操作也应尽快完成。 |
NoCompression | 2 | 该文件不应执行压缩。 |
SmallestSize | 3 | 压缩操作应尽可能小地创建输出,即使该操作需要更长的时间才能完成。 |
我方法这里直接固定了采用 CompressionLevel.Optimal,大家可以根据个人需求自行调整。
/// <summary> /// 将指定文件压缩为Zip文件 /// </summary> /// <param name="filePath">文件地址 D:/1.txt </param> /// <param name="zipPath">zip地址 D:/1.zip </param&编程gt; public static void CompressFileZip(string filePath, string zipPath) { FileInfo fileInfo = new FileInfo(filePath); string dirPath = fileInfo.DirectoryName?.Replace("\\", "/") + "/"; string tempPath = dirPath + Guid.NewGuid() + "_temp/"; if (!Directory.Exists(tempPath)) { Directory.CreateDirectory(tempPath); } fileInfo.CopyTo(tempPath + fileInfo.NameIRmvbKC); CompressDirectoryZip(tempPath, zipPath); DirectoryInfo directory = new(path); if (directory.Exists) { //将文件夹属性设置为普通,如编程:只读文件夹设置为普通 directory.Attributes = FileAttributes.Normal; directory.Delete(true); } }
压缩单个文件的逻辑其实就是先将我们要压缩的文件复制到一个临时目录,然后对临时目录执行了压缩动作,压缩完成之后又删除了临时目录。
/// <summary> /// 解压Zip文件到指定目录 /// </summary> /// <param name="zipPath">zip地址 D:/1.zip</param> /// <param name="folderPath">文件夹地址 D:/1/</param> public static void DecompressZip(string zipPath, string folderPath) { DirectoryInfo directoryInfo = new(folderPath); if (!directoryInfo.Exists) { directoryInfo.Create(); } ZipFile.ExtractToDirectory(zipPath, folderPath); }
至此 C# 使用原生 System.IO.Compression 实现 zip 的压缩与解压 就讲解完了,有任何不明白的,可以在文章下面评论或者私信我,欢迎大家积极的讨论交流,有兴趣的朋友可以关注我目前在维护的一个 .NET 基础框架项目,项目地址如下
https://github.com/berkerdong/NetEngine.git
https://gitee.com/berkerdong/NetEngine.git
到此这篇关于C# 使用原生 System.IO.Compression 实现&pythonnbs开发者_Python学习p;zip 的压缩与解压的文章就介绍到这了,更多相关C# 实现 zip 的压缩与解压内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!
精彩评论