欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

通过SharpZipLib实现文件夹压缩以及解压

程序员文章站 2022-06-09 13:46:50
代码说明 1. 基于SharpZipLib实现Zip压缩解压,扩展实现文件夹级别压缩解压; 2. 项目源码: "MasterChief.DotNet.Infrastructure.Zip" 3. Install Package MasterChief.DotNet.Infrastructure.Zi ......

代码说明

  1. 基于sharpziplib实现zip压缩解压,扩展实现文件夹级别压缩解压;
  2. 项目源码:masterchief.dotnet.infrastructure.zip
  3. install-package masterchief.dotnet.infrastructure.zip
  4. 欢迎star,欢迎pr;
  1. 如何使用

    //压缩
    ziphelper.compress(@"c:\迅雷下载", @"c:\迅雷下载.zip");
    //解压
    ziphelper.extract(@"c:\迅雷下载.zip", @"c:\迅雷下载22");