C#实现多级子目录Zip压缩解压实例

?
?

参考

https://blog.csdn.net/lki_suidongdong/article/details/20942977

重点:

实现多级子目录的压缩,类似winrar,可以选择是否排除基准目录

?
?

?
?

?
?

?
?

?
?

测试代码

?
?

  1. public?void?ZipDirectoryTest()???
  2. {???
  3. string?path?=?System.IO.Path.Combine(System.IO.Path.GetTempPath(),?DateTime.Now.Ticks.ToString());???
  4. foreach?(string?sub?in?new?string[]?{?"bin",?"release",?"test",?"test\\bin",?""?})???
  5. {???
  6. string?subPath?=?System.IO.Path.Combine(path,?sub);???
  7. if?(!System.IO.Directory.Exists(subPath))???
  8. System.IO.Directory.CreateDirectory(subPath);???
  9. System.IO.File.WriteAllText(System.IO.Path.Combine(subPath,?"1.cs"),?"");???
  10. System.IO.File.WriteAllText(System.IO.Path.Combine(subPath,?"1.txt"),?"");???
  11. System.IO.File.WriteAllText(System.IO.Path.Combine(subPath,?"1.html"),?"");???
  12. System.IO.File.WriteAllText(System.IO.Path.Combine(subPath,?"1.bin"),?"");???
  13. ???
    ?
  14. }???
  15. Console.WriteLine(path);???
  16. ???
    ?
  17. new?ZipHelper().ZipDirectory(path,?"e:\\temp\\tt.zip",false);???
  18. ZipHelper.UnZip("e:\\temp\\tt.zip",?"e:\\temp\\tt2");???
  19. //System.IO.Directory.Delete(path,?true);???
  20. //Q.Helper.FileHelper.SelectFile(path);???
  21. }??

?
?

代码

?
?


using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.IO;

using ICSharpCode.SharpZipLib;

using ICSharpCode.SharpZipLib.Zip;

#if NETSTANDARD2_0

using ICSharpCode.SharpZipLib.Checksum;

#else

using ICSharpCode.SharpZipLib.Checksums;

#endif

?
?

namespace Q.Helper.Zip

{

?
?

/// <summary>

/// 适用与ZIP压缩

/// </summary>

public class ZipHelper

{

public int Level

{

get; set;

}

#region 压缩

?
?

/// <summary>

/// 递归压缩文件夹的内部方法(排除相对路径)

/// </summary>

/// <param name="folderToZip">要压缩的文件夹路径</param>

/// <param name="zipStream">压缩输出流</param>

/// <param name="parentFolderName">此文件夹的上级文件夹</param>

/// <param name="includeFloderName">是否包含目录名</param>

/// <returns></returns>

private bool ZipDirectory(string folderToZip, ZipOutputStream zipStream, string parentFolderName, bool createBaseFolder = true)

{

folderToZip = folderToZip.Replace("\\", "/");

bool result = true;

string[] folders, files;

ZipEntry ent = null;

FileStream fs = null;

Crc32 crc = new Crc32();

?
?

try

{

string entPath = Path.Combine(parentFolderName, Path.GetFileName(folderToZip) + "/").Replace("\\", "/");

if (!createBaseFolder)

entPath = entPath.Substring(entPath.IndexOf("/") + 1);

if (!string.IsNullOrEmpty(entPath))

{

ent = new ZipEntry(entPath);

Console.WriteLine(entPath);

zipStream.PutNextEntry(ent);

zipStream.Flush();

}

files = Directory.GetFiles(folderToZip);

foreach (string file in files)

{

fs = File.OpenRead(file);

?
?

byte[] buffer = new byte[fs.Length];

fs.Read(buffer, 0, buffer.Length);

entPath = Path.Combine(parentFolderName, Path.GetFileName(folderToZip) + "/" + Path.GetFileName(file)).Replace("\\", "/");

if (!createBaseFolder)

entPath = entPath.Substring(entPath.IndexOf("/") + 1);

Console.WriteLine(entPath);

ent = new ZipEntry(entPath);

ent.DateTime = DateTime.Now;

ent.Size = fs.Length;

?
?

fs.Close();

?
?

crc.Reset();

crc.Update(buffer);

?
?

ent.Crc = crc.Value;

zipStream.PutNextEntry(ent);

zipStream.Write(buffer, 0, buffer.Length);

}

?
?

}

catch (Exception ex)

{

result = false;

throw ex;

}

finally

{

if (fs != null)

{

fs.Close();

fs.Dispose();

}

if (ent != null)

{

ent = null;

}

GC.Collect();

GC.Collect(1);

}

?
?

folders = Directory.GetDirectories(folderToZip);

//多级递归时需要记住相对目录

foreach (string folder in folders)

{

if (!ZipDirectory(folder, zipStream, Path.Combine(parentFolderName, Path.GetFileName(folderToZip)), createBaseFolder))

return false;

}

return result;

}

?
?

/// <summary>

/// 压缩文件夹

/// </summary>

/// <param name="folderToZip">要压缩的文件夹路径</param>

/// <param name="zipedFile">压缩文件完整路径</param>

/// <param name="password">密码</param>

/// <returns>是否压缩成功</returns>

public bool ZipDirectory(string folderToZip, string zipedFile, string password, bool includeFloderName = true)

{

bool result = false;

if (!Directory.Exists(folderToZip))

return result;

?
?

ZipOutputStream zipStream = new ZipOutputStream(File.Create(zipedFile));

zipStream.SetLevel(Level);

if (!string.IsNullOrEmpty(password)) zipStream.Password = password;

?
?

result = ZipDirectory(folderToZip, zipStream, "", includeFloderName);

?
?

zipStream.Finish();

zipStream.Close();

?
?

return result;

}

?
?

/// <summary>

/// 压缩文件夹

/// </summary>

/// <param name="folderToZip">要压缩的文件夹路径</param>

/// <param name="zipedFile">压缩文件完整路径</param>

/// <returns>是否压缩成功</returns>

public bool ZipDirectory(string folderToZip, string zipedFile, bool includeFloderName = true)

{

bool result = ZipDirectory(folderToZip, zipedFile, "", includeFloderName);

return result;

}

?
?

/// <summary>

/// 压缩文件

/// </summary>

/// <param name="fileToZip">要压缩的文件全名</param>

/// <param name="zipedFile">压缩后的文件名</param>

/// <param name="password">密码</param>

/// <returns>压缩结果</returns>

public bool ZipFile(string fileToZip, string zipedFile, string password)

{

bool result = true;

ZipOutputStream zipStream = null;

FileStream fs = null;

ZipEntry ent = null;

?
?

if (!File.Exists(fileToZip))

return false;

?
?

try

{

fs = File.OpenRead(fileToZip);

byte[] buffer = new byte[fs.Length];

fs.Read(buffer, 0, buffer.Length);

fs.Close();

?
?

fs = File.Create(zipedFile);

zipStream = new ZipOutputStream(fs);

if (!string.IsNullOrEmpty(password)) zipStream.Password = password;

ent = new ZipEntry(Path.GetFileName(fileToZip));

zipStream.PutNextEntry(ent);

zipStream.SetLevel(Level);

?
?

zipStream.Write(buffer, 0, buffer.Length);

?
?

}

catch

{

result = false;

}

finally

{

if (zipStream != null)

{

zipStream.Finish();

zipStream.Close();

}

if (ent != null)

{

ent = null;

}

if (fs != null)

{

fs.Close();

fs.Dispose();

}

}

GC.Collect();

GC.Collect(1);

?
?

return result;

}

?
?

/// <summary>

/// 压缩文件

/// </summary>

/// <param name="fileToZip">要压缩的文件全名</param>

/// <param name="zipedFile">压缩后的文件名</param>

/// <returns>压缩结果</returns>

public bool ZipFile(string fileToZip, string zipedFile)

{

bool result = ZipFile(fileToZip, zipedFile, null);

return result;

}

?
?

/// <summary>

/// 压缩文件或文件夹

/// </summary>

/// <param name="fileToZip">要压缩的路径</param>

/// <param name="zipedFile">压缩后的文件名</param>

/// <param name="password">密码</param>

/// <returns>压缩结果</returns>

public bool Zip(string fileToZip, string zipedFile, string password)

{

bool result = false;

if (Directory.Exists(fileToZip))

result = ZipDirectory(fileToZip, zipedFile, password);

else if (File.Exists(fileToZip))

result = ZipFile(fileToZip, zipedFile, password);

?
?

return result;

}

?
?

/// <summary>

/// 压缩文件或文件夹

/// </summary>

/// <param name="fileToZip">要压缩的路径</param>

/// <param name="zipedFile">压缩后的文件名</param>

/// <returns>压缩结果</returns>

public bool Zip(string fileToZip, string zipedFile)

{

bool result = Zip(fileToZip, zipedFile, null);

return result;

?
?

}

?
?

#endregion

?
?

#region 解压

?
?

/// <summary>

/// 解压功能(解压压缩文件到指定目录)

/// </summary>

/// <param name="fileToUnZip">待解压的文件</param>

/// <param name="zipedFolder">指定解压目标目录</param>

/// <param name="password">密码</param>

/// <returns>解压结果</returns>

public static bool UnZip(string fileToUnZip, string zipedFolder, string password)

{

bool result = true;

?
?

ZipInputStream zipStream = null;

ZipEntry ent = null;

string fileName;

?
?

if (!File.Exists(fileToUnZip))

return false;

?
?

if (!Directory.Exists(zipedFolder))

Directory.CreateDirectory(zipedFolder);

?
?

try

{

zipStream = new ZipInputStream(File.OpenRead(fileToUnZip));

if (!string.IsNullOrEmpty(password)) zipStream.Password = password;

while ((ent = zipStream.GetNextEntry()) != null)

{

if (!string.IsNullOrEmpty(ent.Name))

{

fileName = Path.Combine(zipedFolder, ent.Name);

fileName = fileName.Replace(‘/‘, ‘\\‘);//change by Mr.HopeGi

?
?

if (fileName.EndsWith("\\"))

{

Directory.CreateDirectory(fileName);

continue;

}

using (FileStream fs = File.Create(fileName))

{

int size = 2048;

byte[] data = new byte[size];

while (true)

{

?
?

size = zipStream.Read(data, 0, data.Length);

if (size > 0)

fs.Write(data, 0, data.Length);

else

break;

}

fs.Flush();

?
?

fs.Close();

new FileInfo(fileName).LastWriteTime = ent.DateTime;

}

?
?

}

}

}

catch

{

result = false;

}

finally

{

?
?

if (zipStream != null)

{

zipStream.Close();

zipStream.Dispose();

}

if (ent != null)

{

ent = null;

}

GC.Collect();

GC.Collect(1);

}

return result;

}

?
?

/// <summary>

/// 解压功能(解压压缩文件到指定目录)

/// </summary>

/// <param name="fileToUnZip">待解压的文件</param>

/// <param name="zipedFolder">指定解压目标目录</param>

/// <returns>解压结果</returns>

public static bool UnZip(string fileToUnZip, string zipedFolder)

{

bool result = UnZip(fileToUnZip, zipedFolder, null);

return result;

}

?
?

#endregion

}

}

?
?

??

原文地址:https://www.cnblogs.com/QinQouShui/p/9276781.html

时间: 2024-10-07 19:12:49

C#实现多级子目录Zip压缩解压实例的相关文章

C#实现Zip压缩解压实例【转】

本文只列举一个压缩帮助类,使用的是有要添加一个dll引用ICSharpCode.SharpZipLib.dll[下载地址]. 另外说明一下的是,这个类压缩格式是ZIP的,所以文件的后缀写成 .zip. 还有,如果用这个类来解压rar格式的压缩文件时会报错,就网上说的那个"Wrong Local header signature: 0x21726152"异常.只要解压ZIP压缩格式的压缩文件就不会报错了. 下面就是Helper类的代码: using System; using Syste

使用 ICSharpCode.SharpZipLib.Zip压缩解压文件

/// <summary> /// 功能:解压zip格式的文件. /// </summary> /// <param name="zipFilePath">压缩文件路径</param> /// <param name="unZipDir">解压文件存放路径,为空时默认与压缩文件同一级目录下,跟压缩文件同名的文件夹</param> /// <returns>解压是否成功</ret

压缩解压命令

压缩解压命令 :gzip命令名称:gzip命令英文原意:GNU zip命令所在路径:/bin/gzip执行权限:所有用户语法:gzip [文件]功能描述:压缩文件压缩后文件格式:.gz 压缩解压命令 :gunzip命令名称:gunzip命令英文原意:GNU unzip命令所在路径:/bin/gunzip执行权限:所有用户语法:gunzip [压缩文件]功能描述:解压缩.gz的压缩文件范例: $ gunzip boduo.gz  或 $ gzip -d boduo.gz gzip 只能压缩文件,不

Linux下的压缩(zip)解压(unzip)缩命令

1.zip命令zip -r myfile.zip ./*将当前目录下的所有文件和文件夹全部压缩成myfile.zip文件,-r表示递归压缩子目录下所有文件. 2.unzip命令unzip -o -d /home/sunny myfile.zip把myfile.zip文件解压到 /home/sunny/-o:不提示的情况下覆盖文件:-d:-d /home/sunny 指明将文件解压缩到/home/sunny目录下: 3.其他zip -d myfile.zip smart.txt删除压缩文件中sma

支持文件的流式压缩/解压IP*Works! Zip

IP*Works! Zip是为应用程序添加压缩功能的完全可控件组件包.使用简单.速度快并且效率很高,是一个为桌面和网上应用程序添加压缩和解压缩功能的组件套包./n software IP*Works! Zip支持Zip.Tar.Gzip 和 Jar压缩标准,特别的,它支持流式压缩.加密压缩,在压缩包里就可以直接删除文件.我们目前提供完全可控的纯C# .NET组件.纯Java Beans. 产品特征: IP*Works! Zip基于纯C#代码,是完全可控的.NET组件,不依赖于任何外部代码.是完全

Linux压缩解压命令详细介绍(gizp、tag、zip、bzip2)

--------------------------------------压缩解压命令------------------------------- *windos可以解压所有linux系统的文件压缩包,但linux不一定能够全部解压windos的 一: gzip :压缩文件 ---  GUN zip    .gz文件格式 特点:1只能压缩文件,不能压缩目录 2不保留源文件 例子:gzip newfile   就会产生一个newfile.gz的一个文件包 gunzip :解压缩(或者用gzip

PHP扩展类ZipArchive实现压缩解压Zip文件和文件打包下载

PHP扩展类ZipArchive实现压缩解压Zip文件和文件打包下载 http://my.oschina.net/junn/blog/104464 PHP ZipArchive 是PHP自带的扩展类,可以轻松实现ZIP文件的压缩和解压,使用前首先要确保PHP ZIP 扩展已经开启,具体开启方法就不说了,不同的平台开启PHP扩增的方法网上都有,如有疑问欢迎交流.这里整理一下常用的示例供参考. 一.解压缩zip文件 ? 1 2 3 4 5 6 7 8 9 10 11 $zip = new ZipAr

IOS开发—图片压缩/解压成Zip文件

图片压缩/解压成Zip文件 本文介绍如何将图片压缩成Zip文件,首先需要下载第三方库ZipArchive 并导入项目中. ZipArchive 库地址:https://github.com/mattconnolly/ZipArchive 一.文档结构: 二.准备工作: 1.框架导入: 2.ZipArchive.m文件使用非ARC机制 三.代码示例: // // ViewController.m // UnzipImgDemo // // Created byLotheve on 15/4/10.

C# .NET 使用DotNetZip开源类库 处理 压缩/解压 Zip 处理乱码情况

dotNetZip on CodePlex: http://dotnetzip.codeplex.com/ 压缩: //1.压缩 //指定编码,防止中文乱码情况 using (ZipFile zip = new ZipFile(System.Text.Encoding.UTF8)) { // add this map file into the "images" directory in the zip archive 将该地图文件添加到zip存档中的"images"