C#使用ICSharpCode.SharpZipLib.dll進行文件的壓縮與解壓

来源:https://www.cnblogs.com/huage-1234/archive/2017/12/27/8127479.html
-Advertisement-
Play Games

調用函數如下: 效果圖如下: ...


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using ICSharpCode.SharpZipLib.Zip;
using ICSharpCode.SharpZipLib.Checksums;
using System.Security.Cryptography;

namespace zip壓縮與解壓
{
    public class ZipHelper
    {
        /// <summary>
        /// 壓縮單個文件
        /// </summary>
        /// <param name="fileToZip">需壓縮的文件名</param>
        /// <param name="zipFile">壓縮後的文件名(文件名都是絕對路徑)</param>
        /// <param name="level">壓縮等級(0-9)</param>
        /// <param name="password">壓縮密碼(解壓是需要的密碼)</param>
        public static void ZipFile(string fileToZip, string zipFile, int level = 5, string password = "123")
        {
            if (!File.Exists(fileToZip))
                throw new FileNotFoundException("壓縮文件" + fileToZip + "不存在");

            using (FileStream fs = File.OpenRead(fileToZip))
            {
                fs.Position = 0;//設置流的起始位置
                byte[] buffer = new byte[(int)fs.Length];
                fs.Read(buffer, 0, buffer.Length);//讀取的時候設置Position,寫入的時候不需要設置
                fs.Close();
                using (FileStream zfstram = File.Create(zipFile))
                {
                    using (ZipOutputStream zipstream = new ZipOutputStream(zfstram))
                    {
                        zipstream.Password = md5(password);//設置屬性的時候在PutNextEntry函數之前
                        zipstream.SetLevel(level);
                        string fileName = fileToZip.Substring(fileToZip.LastIndexOf('\\') + 1);
                        ZipEntry entry = new ZipEntry(fileName);
                        zipstream.PutNextEntry(entry);
                        zipstream.Write(buffer, 0, buffer.Length);
                    }
                }

            }
        }

        /// <summary>
        /// 壓縮多個文件目錄
        /// </summary>
        /// <param name="dirname">需要壓縮的目錄</param>
        /// <param name="zipFile">壓縮後的文件名</param>
        /// <param name="level">壓縮等級</param>
        /// <param name="password">密碼</param>
        public static void ZipDir(string dirname, string zipFile, int level = 5, string password = "123")
        {
            ZipOutputStream zos = new ZipOutputStream(File.Create(zipFile));
            zos.Password = md5(password);
            zos.SetLevel(level);
            addZipEntry(dirname, zos, dirname);
            zos.Finish();
            zos.Close();

        }
        /// <summary>
        /// 往壓縮文件裡面添加Entry
        /// </summary>
        /// <param name="PathStr">文件路徑</param>
        /// <param name="zos">ZipOutputStream</param>
        /// <param name="BaseDirName">基礎目錄</param>
        private static void addZipEntry(string PathStr, ZipOutputStream zos, string BaseDirName)
        {
            DirectoryInfo dir = new DirectoryInfo(PathStr);
            foreach (FileSystemInfo item in dir.GetFileSystemInfos())
            {
                if ((item.Attributes & FileAttributes.Directory) == FileAttributes.Directory)//如果是文件夾繼續遞歸
                {
                    addZipEntry(item.FullName, zos, BaseDirName);
                }
                else
                {
                    FileInfo f_item = (FileInfo)item;
                    using (FileStream fs = f_item.OpenRead())
                    {
                        byte[] buffer = new byte[(int)fs.Length];
                        fs.Position = 0;
                        fs.Read(buffer, 0, buffer.Length);
                        fs.Close();
                        ZipEntry z_entry = new ZipEntry(item.FullName.Replace(BaseDirName, ""));
                        zos.PutNextEntry(z_entry);
                        zos.Write(buffer, 0, buffer.Length);
                    }
                }
            }


        }

        /// <summary>
        /// 解壓多個文件目錄
        /// </summary>
        /// <param name="zfile">壓縮文件絕對路徑</param>
        /// <param name="dirname">解壓文件目錄</param>
        /// <param name="password">密碼</param>
        public static void UnZip(string zfile, string dirname, string password)
        {
            if (!Directory.Exists(dirname)) Directory.CreateDirectory(dirname);

            using (ZipInputStream zis = new ZipInputStream(File.OpenRead(zfile)))
            {
                zis.Password = md5(password);
                ZipEntry entry;
                while ((entry = zis.GetNextEntry()) != null)
                {
                    var strArr = entry.Name.Split('\\');//這邊判斷壓縮文件裡面是否存在目錄,存在的話先創建目錄後繼續解壓
                    if (strArr.Length > 2)        
                        Directory.CreateDirectory(dirname + @"\" + strArr[1]);
                    
                    using (FileStream dir_fs = File.Create(dirname + entry.Name))
                    {
                        int size = 1024 * 2;
                        byte[] buffer = new byte[size];
                        while (true)
                        {
                            size = zis.Read(buffer, 0, buffer.Length);
                            if (size > 0)
                                dir_fs.Write(buffer, 0, size);
                            else
                                break;
                        }
                    }
                }
            }
        }

        private static string md5(string pwd)
        {
            var res = "";
            MD5 md = MD5.Create();
            byte[] s = md.ComputeHash(Encoding.Default.GetBytes(pwd));
            for (int i = 0; i < s.Length; i++)
                res = res + s[i].ToString("X");

            return res;
        }
    }
}

調用函數如下:

  static void Main(string[] args)
        {

            var str = @"\學籍導入模板.xls";
            //var arr=str.Split('\\');

            var filePath = @"D:\程式文件\VS2010學習\StudyProgram\zip壓縮與解壓\File\學籍導入模板.xls";
            //ZipHelper.ZipFile(filePath, @"D:\程式文件\VS2010學習\StudyProgram\zip壓縮與解壓\File\test.zip", 6, "123");
            var dirPath = @"D:\程式文件\VS2010學習\StudyProgram\zip壓縮與解壓";
            //ZipHelper.ZipDir(dirPath + @"\File", dirPath + @"\File.zip", 6, "huage");

            ZipHelper.UnZip(dirPath + @"\File.zip", dirPath + @"\test", "huage");

            Console.ReadKey();
        }

效果圖如下:

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Pandas基礎篇 Pandas基於Numpy開發,提供了很多高級的數據處理功能。 1、Pandas中的數據對象 Series和DataFrame是Pandas中最常用的兩個對象。 1.1 Series對象 是Pandas中最基本的對象,可用Numpy的數組處理函數直接對Series對象進行處理。支 ...
  • 許可權修飾符 許可權修飾符包括public、private、protected和不加任何修飾符的default,它們都可以修飾方法和變數。其中public和預設的default(不加任何修飾符)這兩個還可以修飾class。private和protected修飾類的情況只能在使用內部類時修飾,正常情況下不 ...
  • 類路徑(classpath) java編譯器編譯.java文件和java虛擬機執行.class文件時的路徑和寫法不一樣。 在沒有設置任何classpath環境變數的情況下,javac可以編譯全路徑的.java文件。例如: 編譯後,在.java同路徑目錄下生成class文件。 預設java虛擬機要從c ...
  • 基礎 類有屬性和方法,它們對本類有效(作用範圍)。類的屬性就是成員變數,它預設會賦值初始化。類的方法是類具有的一些行為。 類是抽象的,將它們實例化後就是對象(通過new進行實例化),各實例化後的對象都具有這些成員變數的屬性,且賦有具體的值,如果某對象沒有為成員變數賦值,則採用預設初始化時的值。每個n ...
  • 前面 lucene 初探 都是為了solr打基礎的. 雖然lucene 的filter 沒有涉及, 但是打基礎, 差不多夠用了. 一. solr 和 lucene 的區別 這裡我就用自己的理解來說了, 可能不全, 但是應該夠用了, 網上能搜到官方一點的. 首先, solr 是基於 lucene的. ...
  • lucene初探, 是為了後面solr做準備的. 如果跳過lucene, 直接去看solr, 估計有點懵. 由於時間的關係, lucene查詢方法也有多個, 所以單獨出來. 一. 精確查詢 在查詢的時候, 新建一個Term對象, 進去精確匹配. 前一篇提到過, 經過分詞器分下來的每一個詞或者一段話, ...
  • 把一個數據集List<T>複製至到另一個數據集List<T>。 方法一,可以使用迴圈,然後把每一個T添加至另一個集合中去: public void ListDemo() { var listA = new List<int> { 2, 5, 6, 8, 23, 56, 4 }; var listB ...
  • What is CQRS CQRS means Command Query Responsibility Segregation. Many people think that CQRS is an entire architecture, but they are wrong. CQRS is j ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...