C#使用SharpZipLib对文件进行压缩和解压

2024-03-14 06:12

本文主要是介绍C#使用SharpZipLib对文件进行压缩和解压,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

C#使用SharpZipLib对文件进行压缩和解压

使用SharpZipLib库

编写SharpZipLibHelper帮助类

using ICSharpCode.SharpZipLib.Zip;namespace SharpZipLib_Project
{public class SharpZipLibHelper{/// <summary>/// 多个文件或文件夹压缩/// </summary>/// <param name="sourcePaths">文件或文件夹名称</param>/// <param name="zipFilePath">压缩文件夹名称</param>public static string CompressFilesAndDirectories(string[] sourcePaths, string zipFilePath){try{using (FileStream fsOut = File.Create(zipFilePath)){using (ZipOutputStream zipStream = new ZipOutputStream(fsOut)){foreach (string sourcePath in sourcePaths){if (Directory.Exists(sourcePath)){CompressDirectoryRecursive(sourcePath, zipStream);}else if (File.Exists(sourcePath)){CompressFile(sourcePath, zipStream);}else{Console.WriteLine($"Path '{sourcePath}' does not exist.");}}}}return "成功";}catch (Exception ex){return ex.Message;}}/// <summary>/// 向压缩文件添加文件/// </summary>/// <param name="sourceFilePath"></param>/// <param name="zipStream"></param>/// <returns></returns>private static string CompressFile(string sourceFilePath, ZipOutputStream zipStream){try{string entryName = Path.GetFileName(sourceFilePath);ZipEntry newEntry = new ZipEntry(entryName);zipStream.PutNextEntry(newEntry);byte[] buffer = new byte[4096];using (FileStream fsIn = File.OpenRead(sourceFilePath)){int sourceBytes;do{sourceBytes = fsIn.Read(buffer, 0, buffer.Length);zipStream.Write(buffer, 0, sourceBytes);} while (sourceBytes > 0);}return "成功";}catch (Exception ex){return ex.Message;}}/// <summary>/// 向压缩文件添加文件夹/// </summary>/// <param name="rootDirectoryPath"></param>/// <param name="currentDirectoryPath"></param>/// <param name="zipStream"></param>/// <returns></returns>private static string CompressDirectoryRecursive(string sourceDirectoryPath, ZipOutputStream zipStream){try{string[] files = Directory.GetFiles(sourceDirectoryPath, "*", SearchOption.AllDirectories);string rootDirectoryName = Path.GetFileName(sourceDirectoryPath);// 添加文件夹本身ZipEntry rootDirectoryEntry = new ZipEntry(rootDirectoryName + "/");zipStream.PutNextEntry(rootDirectoryEntry);// 添加文件夹内的文件和子文件夹foreach (string file in files){string relativePath = Path.GetRelativePath(sourceDirectoryPath, file);ZipEntry newEntry = new ZipEntry(rootDirectoryName + "/" + relativePath);zipStream.PutNextEntry(newEntry);byte[] buffer = new byte[4096];using (FileStream fsIn = File.OpenRead(file)){int sourceBytes;while ((sourceBytes = fsIn.Read(buffer, 0, buffer.Length)) > 0){zipStream.Write(buffer, 0, sourceBytes);}}}return "成功";}catch (Exception ex){return ex.Message;}}/// <summary>/// 解压文件/// </summary>/// <param name="zipFilePath">压缩文件地址</param>/// <param name="extractPath">解压文件夹</param>/// <returns></returns>public static string DecompressFile(string zipFilePath, string extractPath){try{if (!Directory.Exists(extractPath))Directory.CreateDirectory(extractPath);using (FileStream fsIn = new FileStream(zipFilePath, FileMode.Open, FileAccess.Read)){using (ZipInputStream zipStream = new ZipInputStream(fsIn)){ZipEntry entry;while ((entry = zipStream.GetNextEntry()) != null){string entryFileName = Path.Combine(extractPath, entry.Name);string directoryName = Path.GetDirectoryName(entryFileName);if (directoryName.Length > 0 && !Directory.Exists(directoryName))Directory.CreateDirectory(directoryName);if (entry.IsFile){using (FileStream fsOut = File.Create(entryFileName)){byte[] buffer = new byte[4096];int sourceBytes;while ((sourceBytes = zipStream.Read(buffer, 0, buffer.Length)) > 0){fsOut.Write(buffer, 0, sourceBytes);}}}}}}return "成功";}catch (Exception ex){return ex.Message;}}}
}

如何使用工具类

private void button1_Click(object sender, EventArgs e)
{// 压缩文件string[] sourcePaths = { "example.txt", "Example", "example1.txt"};string str = SharpZipLibHelper.CompressFilesAndDirectories(sourcePaths, "example.zip");if (str != "成功"){MessageBox.Show($"压缩失败: {str}");}else{MessageBox.Show("压缩成功!");}
}private void button2_Click(object sender, EventArgs e)
{// 解压缩文件string str = SharpZipLibHelper.DecompressFile("example.zip", "extracted_files");if (str != "成功"){MessageBox.Show($"解压失败: {str}");}else{MessageBox.Show("解压成功!");}
}

备注: 这种压缩方法无法压缩空的文件夹,因为空的文件夹里面没有文件路径,所有会自动忽略.如果需要添加空文件夹需要自己先判断目录是否为空,然后自己在压缩文件中创建就可以了

2024.3.13

这篇关于C#使用SharpZipLib对文件进行压缩和解压的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/807459

相关文章

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

hdu1565(状态压缩)

本人第一道ac的状态压缩dp,这题的数据非常水,很容易过 题意:在n*n的矩阵中选数字使得不存在任意两个数字相邻,求最大值 解题思路: 一、因为在1<<20中有很多状态是无效的,所以第一步是选择有效状态,存到cnt[]数组中 二、dp[i][j]表示到第i行的状态cnt[j]所能得到的最大值,状态转移方程dp[i][j] = max(dp[i][j],dp[i-1][k]) ,其中k满足c

2. c#从不同cs的文件调用函数

1.文件目录如下: 2. Program.cs文件的主函数如下 using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using System.Windows.Forms;namespace datasAnalysis{internal static

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma