`
hipeace87
  • 浏览: 174411 次
  • 性别: 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
分享到:
评论

相关推荐

    .Net下利用ICSharpCode.SharpZipLib.dll实现文件压缩、解压缩

    在.NET环境中,有时候我们需要对文件或文件夹进行压缩和解压缩操作,这通常是通过引用特定的库来实现的。本文将详细介绍如何使用ICSharpCode.SharpZipLib.dll这个开源库在.NET平台上进行文件的压缩与解压缩。 ...

    无网络安装 dotnet-sdk-3.1

    3. **解压安装包**:在无网络的电脑上,找到并解压缩下载的文件,这通常会生成一个包含多个文件和文件夹的结构。 4. **手动安装**:运行解压后的安装程序(通常是名为 `dotnet-sdk-3.1.xxxxx-win-x64.exe` 或 `...

    C# 常用类库(多年积累的精华大部分可以直接到项目开发)

    这个类库包含了文件操作、网络操作、压缩解压缩、邮件处理和正则表达式等多个方面的功能,极大地提高了开发效率和代码的可复用性。 1. **文件操作**:文件操作是任何应用程序的基础,这个类库可能提供了读取、写入...

    dotnet OpenXML 读取 PPT 内嵌 ole 格式 Excel 表格的信息.rar

    因此,要访问内嵌的Excel表格,我们需要解压缩PPTX文件,然后找到对应的XML文件。 在PowerPoint文档中,内嵌的OLE对象通常存储在`ppt/embeddings`文件夹下,其中每个对象都有一个`.bin`文件,这个文件实际上是OLE...

    .netcore3.1,zh-hans.zip

    下载完成后,解压缩文件,你会看到一个名为 "zh-hans" 的文件夹,它包含了所有汉化的语言文件。为了使这些汉化文件生效,你需要将其正确地复制到 .NET Core 3.1 的安装目录下,通常是在 "C:\Program Files\dotnet" ...

    jellyfin-plugin-mergeversions:该插件可扫描您所有的电影,并将每个重复的电影归为一个版本

    解压缩该.dll文件并将其放在程序数据目录下或可移植安装目录内一个名为plugins/Merge Versions的文件夹中 重新启动Jellyfin 用户指南 要合并电影或情节,您可以通过计划任务或直接通过插件的配置来完成。 仅可通过...

    osuBeatmapsBlocker_dotNet2:(已终止)阻止您想要的视频,SB,背景和自定义

    osuBeatmapsBlocker_dotNet2 ...然后直接找bin文件夹下的主程序,随便解压缩到哪儿运行都可。 主程序会释放一个.txt文件用来配置屏蔽文件列表,里面有详细的注释,可以手动修改哦~ The application. Current versi

    FitNesse安装与编译[参考].pdf

    解压缩后,会得到一个包含FitNesseRoot、README.txt、dotnet、license.txt、fitnesse.jar、run.bat和run.sh等文件的fitnesse文件夹。双击运行run.bat(Windows)或run.sh(Linux),默认监听80端口。如果该端口已被...

    jellyfin-plugin-skin-manager:Jellyfin Skin Manager是一个插件,可以帮助您下​​载和安装皮肤

    解压缩该.dll文件plugins/SkinManager放在程序数据目录下或可移植安装目录内一个名为plugins/SkinManager的文件夹中。 重新启动Jellyfin。用户指南转到插件,单击“皮肤管理器”。 选择要安装的皮肤。 单击设置皮肤...

    CNT-Distributed-Operation-Systems-Project-2

    下载并解压缩该zip文件。 打开CMD并导航到名为Gossip的解压缩文件夹中名为Project2的文件夹。 运行以下命令 dotnet run project2 10000 full gossip 项目:project2 numNodes:任何整数 拓扑:完整,2D,线,...

    水泥:C#依赖管理工具

    解压缩并运行dotnet\install.cmd 重启终端 Command cm显示任何目录中的可用命令 如果已在自定义文件夹中安装了Visual Studio 2017,请在set VS150COMNTOOLS=D:\Program Files\Microsoft Visual Studio\2017\...

    flowcontrol:开源的多平台PC风扇控制器

    将flowcontrol.zip解压缩到您选择的文件夹中,然后运行flowcontrol.exe :hammer_and_wrench: 从源代码构建 流量控制 wails build 流量控制监控器 dotnet publish -r win-x64 -c Release /p:PublishSingleFile=true...

Global site tag (gtag.js) - Google Analytics