`
hipeace87
  • 浏览: 170278 次
  • 性别: Icon_minigender_1
  • 来自: 山东菏泽
社区版块
存档分类
最新评论

DotNet 实现Zip 解压缩文件(可压缩文件或文件夹)

阅读更多
做东西时用到的
使用ICSharpCode.SharpZipLib.dll实现
附件中有,也可下载源代码
主要是添加了两个类
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using ICSharpCode.SharpZipLib;
using ICSharpCode.SharpZipLib.Zip;
using ICSharpCode.SharpZipLib.Checksums;

namespace SharpZipLib
{
    /// 
    /// 压缩类
    /// 
    public class ZipClass
    {
        /// <summary>
        /// 递归压缩文件夹方法
        /// </summary>
        /// <param name="FolderToZip"></param>
        /// <param name="s"></param>
        /// <param name="ParentFolderName"></param>
        /// <returns></returns>
        private bool ZipFileDictory(string FolderToZip, ZipOutputStream s, string ParentFolderName)
        {
            bool res = true;
            string[] folders, filenames;
            ZipEntry entry = null;
            FileStream fs = null;
            Crc32 crc = new Crc32();

            try
            {
                //创建当前文件夹
                entry = new ZipEntry(Path.Combine(ParentFolderName, Path.GetFileName(FolderToZip) + "/")); //加上 “/” 才会当成是文件夹创建
                s.PutNextEntry(entry);
                s.Flush();


                //先压缩文件,再递归压缩文件夹 
                filenames = Directory.GetFiles(FolderToZip);
                foreach (string file in filenames)
                {
                    //打开压缩文件
                    fs = File.OpenRead(file);

                    byte[] buffer = new byte[fs.Length];
                    fs.Read(buffer, 0, buffer.Length);
                    entry = new ZipEntry(Path.Combine(ParentFolderName, Path.GetFileName(FolderToZip) + "/" + Path.GetFileName(file)));

                    entry.DateTime = DateTime.Now;
                    entry.Size = fs.Length;
                    fs.Close();

                    crc.Reset();
                    crc.Update(buffer);

                    entry.Crc = crc.Value;

                    s.PutNextEntry(entry);

                    s.Write(buffer, 0, buffer.Length);
                }
            }
            catch
            {
                res = false;
            }
            finally
            {
                if (fs != null)
                {
                    fs.Close();
                    fs = null;
                }
                if (entry != null)
                {
                    entry = null;
                }
                GC.Collect();
                GC.Collect(1);
            }


            folders = Directory.GetDirectories(FolderToZip);
            foreach (string folder in folders)
            {
                if (!ZipFileDictory(folder, s, Path.Combine(ParentFolderName, Path.GetFileName(FolderToZip))))
                {
                    return false;
                }
            }

            return res;
        }
        /// 
        /// 压缩目录
        /// 
        /// 待压缩的文件夹,全路径格式
        /// 压缩后的文件名,全路径格式
        private bool ZipFileDictory(string FolderToZip, string ZipedFile, String Password)
        {
            bool res;
            if (!Directory.Exists(FolderToZip))
            {
                return false;
            }

            ZipOutputStream s = new ZipOutputStream(File.Create(ZipedFile));
            s.SetLevel(6);
            s.Password = Password;

            res = ZipFileDictory(FolderToZip, s, "");

            s.Finish();
            s.Close();

            return res;
        }
        /// 
        /// 压缩文件
        /// 
        /// 要进行压缩的文件名
        /// 压缩后生成的压缩文件名
        /// 
        public static bool ZipFile(string FileToZip, string ZipedFile, String Password)
        {
            //如果文件没有找到,则报错
            if (!File.Exists(FileToZip))
            {
                throw new System.IO.FileNotFoundException("指定要压缩的文件: " + FileToZip + " 不存在!");
            }
            //FileStream fs = null;
            FileStream ZipFile = null;
            ZipOutputStream ZipStream = null;
            ZipEntry ZipEntry = null;

            bool res = true;
            try
            {
                ZipFile = File.OpenRead(FileToZip);
                byte[] buffer = new byte[ZipFile.Length];
                ZipFile.Read(buffer, 0, buffer.Length);
                ZipFile.Close();

                ZipFile = File.Create(ZipedFile);
                ZipStream = new ZipOutputStream(ZipFile);
                ZipStream.Password = Password;
                ZipEntry = new ZipEntry(Path.GetFileName(FileToZip));
                ZipStream.PutNextEntry(ZipEntry);
                ZipStream.SetLevel(6);

                ZipStream.Write(buffer, 0, buffer.Length);
            }
            catch
            {
                res = false;
            }
            finally
            {
                if (ZipEntry != null)
                {
                    ZipEntry = null;
                }
                if (ZipStream != null)
                {
                    ZipStream.Finish();
                    ZipStream.Close();
                }
                if (ZipFile != null)
                {
                    ZipFile.Close();
                    ZipFile = null;
                }
                GC.Collect();
                GC.Collect(1);
            }

            return res;
        }
        /// <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)
        {
            if (Directory.Exists(FileToZip))
            {
                return ZipFileDictory(FileToZip, ZipedFile, Password);
            }
            else if (File.Exists(FileToZip))
            {
                return ZipFile(FileToZip, ZipedFile, Password);
            }
            else
            {
                return false;
            }
        }
    }
}
/// <summary>
    /// 解压类
    ///解压缩
    ///该程序压缩和解压配合才能使用
    ///普通用 Winrar 压缩的文件该解压不能通过
    /// </summary>
    public class UnZipClass
    {
        /// <summary>
        /// 解压功能(解压压缩文件到指定目录)
        /// </summary>
        /// <param name="FileToUpZip">待解压的文件</param>
        /// <param name="ZipedFolder">指定解压目标目录</param>
        /// <param name="Password">密码</param>
        public bool UnZip(string FileToUpZip, string ZipedFolder, string Password)
        {
            if (!File.Exists(FileToUpZip))
            {
                return false;
            }

            if (!Directory.Exists(ZipedFolder))
            {
                Directory.CreateDirectory(ZipedFolder);
            }

            ZipInputStream s = null;
            ZipEntry theEntry = null;

            string fileName;
            FileStream streamWriter = null;
            try
            {
                s = new ZipInputStream(File.OpenRead(FileToUpZip));
                s.Password = Password;
                while ((theEntry = s.GetNextEntry()) != null)
                {
                    if (theEntry.Name != String.Empty)
                    {
                        fileName = Path.Combine(ZipedFolder, theEntry.Name);
                        /**/
                        ///判断文件路径是否是文件夹
                        if (fileName.EndsWith("/") || fileName.EndsWith("\\"))
                        {
                            Directory.CreateDirectory(fileName);
                            continue;
                        }

                        streamWriter = File.Create(fileName);
                        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;
                            }
                        }
                    }
                }
            }
            finally
            {
                if (streamWriter != null)
                {
                    streamWriter.Close();
                    streamWriter = null;
                }
                if (theEntry != null)
                {
                    theEntry = null;
                }
                if (s != null)
                {
                    s.Close();
                    s = null;
                }
                GC.Collect();
                GC.Collect(1);
            }
            return true;
        }
    }


using System;
using System.Collections.Generic;
using System.Text;
using System.IO;

namespace SharpZipLib
{
    class Program
    {
        static void Main(string[] args)
        {
            if (args.Length == 0)
            {
                Console.WriteLine("参数错误");
                return;
            }
            string password = string.Empty;
            if ((args[0] == "-z" || args[0] == "-Z") && args.Length > 2)
            {
                ZipClass zip = new ZipClass();
                if (args.Length == 4)
                {
                    password = args[3];
                }
                if (zip.Zip(args[1], args[2], password))
                {
                    Console.WriteLine("压缩成功 (*^__^*) ");
                }
                else
                {
                    Console.WriteLine("压缩失败 ~~~~(>_<)~~~~  ");
                }
            }
            if ((args[0] == "-u" || args[0] =="-U") && args.Length > 2)
            {
                UnZipClass unzip = new UnZipClass();
                if (args.Length == 4)
                {
                    password=args[3];
                 }
                if (!File.Exists(args[1]))
                {
                    Console.WriteLine("要解压的文件不存在 ~~~~(>_<)~~~~");
                    return;
                }
                if (unzip.UnZip(args[1], args[2], password))
                {
                    Console.WriteLine("解压成功 (*^__^*) ");
                    return;
                }
                else
                {
                    Console.WriteLine("解压失败 ~~~~(>_<)~~~~  ");
                    return;
                }
            }
        }
    }
}
  • Zip.rar (174.4 KB)
  • 描述: 源码(VSS 2005)
  • 下载次数: 54
2
0
分享到:
评论

相关推荐

    dotnet数据压缩组件包

    dotnet 数据解压缩 压缩 c# vb.net 组件包 dotnet 数据解压缩 压缩 c# vb.net 组件包 dotnet 数据解压缩 压缩 c# vb.net 组件包 dotnet 数据解压缩 压缩 c# vb.net 组件包

    dotNET zip文件压缩DLL.zip

    #ziplib (SharpZipLib, 之前叫 NZipLib) 是一个用C# 专门为.Net平台...#ziplib 的创建者就这么说:“我已经移植zip 库到 C# 因为我需要 gzip/zip 压缩,我不想使用 libzip.dll 或这样的事情。我想所有都在纯 C# 环境。

    C#压缩解压缩支持大文件

    用DotNet自带的命名空间Commpression类实现的,支持大于2G文件。测试通过,供参考吧。

    DotNet打包zip类

    DotNet调用ZipClass.cs类,打包成zip文件。 有调用方法。 各位也可以把此类编译成dll文件,方便调用。

    Api-opentelemetry-dotnet.zip

    Api-opentelemetry-dotnet.zip,opentelemetry.net sdkopentelemetry.net sdk-分布式跟踪和统计数据收集框架,一个api可以被认为是多个软件设备之间通信的指导手册。例如,api可用于web应用程序之间的数据库通信。通过...

    ZModem4DotNET.zip_ZModem4DotNET_zip_zmodem

    ZModem4DotNET .net平台下的

    selenium-dotnet-2.0b2.zip

    selenium-dotnet-2.0b2.zip

    Dotnet4.8.zip

    Dotnet4.8高度兼容版,内含开发环境和运行环境脱机安装。

    lindexi#lindexi.github.io#dotnet OpenXML 解压缩文档为文件夹工具1

    但是我需要不断进行修改文档里面的属性,然后用 Office 打开,测试属性的效果,此时就需要有一个工具用来提升效率工具的作用就是将 Office 文档,包括 W

    dotnet-DotNETCore实现微信公众号被关注时推送消息

    dotnet-DotNETCore实现微信公众号被关注时推送消息dotnet-DotNETCore实现微信公众号被关注时推送消息dotnet-DotNETCore实现微信公众号被关注时推送消息dotnet-DotNETCore实现微信公众号被关注时推送消息dotnet-...

    dotnet-sdk3-win.zip

    .NET Core是适用于 windows、linux 和 macos 操作系统的免费、开源托管的计算机软件框架,是微软开发的第一个官方版本,具有跨平台 (Windows、Mac OSX、Linux) 能力的应用程序开发框架 (Application Framework),...

    Api-graphql-dotnet.zip

    Api-graphql-dotnet.zip,graphql用于.netgraphql用于.net,一个api可以被认为是多个软件设备之间通信的指导手册。例如,api可用于web应用程序之间的数据库通信。通过提取实现并将数据放弃到对象中,api简化了编程。

    DotNet自制清理空文件夹工具

    DotNet自制清理空文件夹工具主要用于清理指定目录下的所有空文件夹,注意只是空文件夹,不包括0字节的空文件。运行环境要求:1. 必须Windows环境; 2. 必须安装.net Framework 3.0以上

    开源项目-matiasinsaurralde-go-dotnet.zip

    开源项目-matiasinsaurralde-go-dotnet.zip,go-dotnet: Go wrapper for the .NET Core Runtime

    Aspnet-memory-dotnet.zip

    Aspnet-memory-dotnet.zip,aspnet核心web-apimemory-dotnet,asp.net是一个开源的web框架,用于使用.net构建现代web应用和服务。asp.net创建基于html5、css和javascript的网站,这些网站简单、快速,可以扩展到数百万...

    开源项目-dotnet-cli.zip

    开源项目-dotnet-cli.zip,Go IDE: Why I'd never touch VSCode - even when it runs on Linux

    Aspnet-docker-dotnet.zip

    Aspnet-docker-dotnet.zip,基于Debian Linux.docker-dotnet的.NET内核的Docker映像,asp.net是一个开源的web框架,用于使用.net构建现代web应用和服务。asp.net创建基于html5、css和javascript的网站,这些网站简单、...

    DOTNET实用dll文件

    多个较实用的dotnet dll引用文件,包括有重写的、编辑器、无刷新支持、依赖注入的

    Vlc.DotNet-develop

    Vlc.DotNet-develop.zip 二次开发包SDK 请使用VS2017运行 Vlc.DotNet-develop.zip 二次开发包SDK 请使用VS2017运行 Vlc.DotNet-develop.zip 二次开发包SDK 请使用VS2017运行 Vlc.DotNet-develop.zip 二次开发包SDK ...

Global site tag (gtag.js) - Google Analytics