c# 文件压缩zip或将zip文件解压的方法
来源:本站原创|时间:2020-01-10|栏目:C#教程|点击: 次
1.必须Dll:
ICSharpCode.SharpZipLib.dll。可从Nutget程序包中获取。
2.压缩文件
/// <summary> /// 压缩文件成zip /// </summary> /// <param name="fileZip">压缩成zip文件的绝对路径</param> /// <param name="fileName">被压缩指定文件的名字</param> /// <param name="zipFilePath"></param> /// <returns></returns> public bool CreateZipFile(string fileZip,string fileName, string zipFilePath) { bool isZip = false; if (!Directory.Exists(zipFilePath)) { Logger.Info($"Cannot find directory {zipFilePath}", false, "FileToZip"); return isZip; } try { string[] filenames = Directory.GetFiles(zipFilePath); using (ZipOutputStream s = new ZipOutputStream(File.Create(fileZip))) { s.SetLevel(9); // 压缩级别 0-9 //s.Password = "123"; //Zip压缩文件密码 byte[] buffer = new byte[4096]; //缓冲区大小 foreach (string file in filenames.ToList()) { if (file== zipFilePath+fileName)//指定被压缩文件的绝对路径 { ZipEntry entry = new ZipEntry(Path.GetFileName(file)); entry.DateTime = DateTime.Now; s.PutNextEntry(entry); using (FileStream fs = File.OpenRead(file)) { int sourceBytes; do { sourceBytes = fs.Read(buffer, 0, buffer.Length); s.Write(buffer, 0, sourceBytes); } while (sourceBytes > 0); fs.Close(); fs.Dispose(); } break; } } s.Finish(); s.Close(); isZip = true; } } catch (Exception ex) { Logger.Info($"Exception during processing {0}", false, "FileToZip"); } return isZip; }
3.将zip文件解压
/// <summary> /// 解压文件 /// </summary> /// <param name="zipFilePath">压缩文件的绝对路径</param> public void UnZipFile(string zipFilePath) { if (!File.Exists(zipFilePath)) { Logger.Info($"Cannot find file {zipFilePath}", false, "FileToZip"); return; } using (ZipInputStream s = new ZipInputStream(File.OpenRead(zipFilePath))) { ZipEntry theEntry; while ((theEntry = s.GetNextEntry()) != null) { string directoryName = Path.GetDirectoryName(theEntry.Name); string fileName = Path.GetFileName(theEntry.Name); // create directory if (directoryName?.Length > 0) { Directory.CreateDirectory(directoryName); } if (!string.IsNullOrEmpty(fileName)) { using (FileStream streamWriter = File.Create(theEntry.Name)) { int size = 2048; byte[] data = new byte[2048]; while (true) { size = s.Read(data, 0, data.Length); if (size > 0) { streamWriter.Write(data, 0, size); } else { break; } } } } } } }
4.其它:其中的Logger是Log4的用法。
以上这篇c# 文件压缩zip或将zip文件解压的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。
您可能感兴趣的文章
- 01-10C#实现多线程下载文件的方法
- 01-10C#文件断点续传实现方法
- 01-10C#实现多线程写入同一个文件的方法
- 01-10C#编程获取资源文件中图片的方法
- 01-10C#实现读取被进程占用的文件实现方法
- 01-10C#删除只读文件或文件夹(解决File.Delete无法删除文件)
- 01-10C# readnodefile()不能读取带有文件名为汉字的osg文件解决方法
- 01-10C#路径,文件,目录及IO常见操作汇总
- 01-10winform实现拖动文件到窗体上的方法
- 01-10C#读写INI文件的方法
阅读排行
本栏相关
- 01-10C#通过反射获取当前工程中所有窗体并
- 01-10关于ASP网页无法打开的解决方案
- 01-10WinForm限制窗体不能移到屏幕外的方法
- 01-10WinForm绘制圆角的方法
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频播放器左下角滚动新
- 01-10C#停止线程的方法
- 01-10C#实现清空回收站的方法
- 01-10C#通过重写Panel改变边框颜色与宽度的
- 01-10C#实现读取注册表监控当前操作系统已
随机阅读
- 01-10C#中split用法实例总结
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-11ajax实现页面的局部加载
- 04-02jquery与jsp,用jquery
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 01-10delphi制作wav文件的方法
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-10SublimeText编译C开发环境设置