使用微軟自帶解壓類壓縮文件夾

来源:https://www.cnblogs.com/adingfirstlove/archive/2018/11/14/9958793.html
-Advertisement-
Play Games

.net framework 4.5框架以後,可以直接使用微軟官方的ZipFile類實現壓縮、解壓文件(夾),因為即時通信項目中,需要同步OA中的用戶頭像,用戶頭像是通過文件夾保存的,文件夾內結構比較複雜。在即時通信中需要先將OA伺服器上保存的用戶頭像文件夾下載下來,因為直接下載文件夾方法很難,所... ...


前言

因為即時通信項目中,需要同步OA中的用戶頭像,用戶頭像是通過文件夾保存的,文件夾內結構比較複雜。在即時通信中需要先將OA伺服器上保存的用戶頭像文件夾下載下來,因為直接下載文件夾方法很難,所以需要先將文件夾壓縮一下,然後在直接下載壓縮文件。

 

他人雅慧

在網上找了不少了例子,幾乎都是使用SharpZipLib開源庫的方式,大體看了一下,感覺比較複雜,後在某篇教程的評論中發現更好的方式,於.net  framework 4.5框架以後,可以直接使用微軟官方的ZipFile類就可,實踐後發現真的好用,什麼都不需要管,直接調用方法就行,果然還是微軟爸爸比較強大。(不需要考慮遞歸文件夾)

 

使用方法

準備
添加dll:
右鍵項目添加程式集 System.IO.Compression.dll,System.IO.Compression.FileSystem.dll

壓縮
ZipFile.CreateFromDirectory(@"F:\APS.DataInterface\bin\Debug", AppDomain.CurrentDomain.BaseDirectory+"newdebug.zip");
解釋一下兩個參數,第一個參數是要 壓縮的文件(文件夾),第二個參數是保存壓縮內容的文件。

解壓
ZipFile.ExtractToDirectory(AppDomain.CurrentDomain.BaseDirectory+"newdebug.zip", @"F:\APS.DataInterface\bin\Debug");

解釋一下兩個參數,第一個參數是要 解壓的zip文件,第二個參數是保存解壓內容的路徑。

其他的一些操作
提取單個文件

using (ZipArchive zipArchive =
ZipFile.Open(AppDomain.CurrentDomain.BaseDirectory + "newdebug.zip", ZipArchiveMode.Read))
{
foreach (ZipArchiveEntry entry in zipArchive.Entries)
{
if (entry.Name == "APS.EP.Controls.dll")
{
using (Stream stream = entry.Open())
{
if (!Directory.Exists(AppDomain.CurrentDomain.BaseDirectory + "oneone"))
{
Directory.CreateDirectory(AppDomain.CurrentDomain.BaseDirectory + "oneone");
}
entry.ExtractToFile(AppDomain.CurrentDomain.BaseDirectory + "oneone\\APS.EP.Controls.dll", true);
}
}
}
}

壓縮指定文件類型文件
IEnumerable<string> files =
Directory.EnumerateFiles@"F:\APS.DataInterface\bin\Debug", "*.dll");
using (ZipArchive zipArchive =
ZipFile.Open(AppDomain.CurrentDomain.BaseDirectory+"newdebug.zip", ZipArchiveMode.Create))
{
foreach (string file in files)
{
var entryName = Path.Combine("DLL", Path.GetFileName(file));
zipArchive.CreateEntryFromFile(file, entryName);
}
}

當然還有其他的一些方法,暫時用不到,不多做研究。

 

項目實戰中的簡單通用類

 

  1 /// <summary>
  2     /// 壓縮、解壓幫助類
  3     /// </summary>
  4     public class ZipHelper
  5     {
  6         #region 單例模式
  7         private volatile static ZipHelper _instance = null;
  8         private static readonly object lockHelper = new object();//線程鎖
  9         public static ZipHelper Instance
 10         {
 11             get
 12             {
 13                 if (_instance == null)
 14                 {
 15                     lock (lockHelper)
 16                     {
 17                         if (_instance == null)
 18                         {
 19                             _instance = new ZipHelper();
 20                         }
 21                     }
 22                 }
 23                 return _instance;
 24             }
 25         }
 26         #endregion 單例模式
 27 
 28         #region 構造函數
 29         public ZipHelper()
 30         {
 31 
 32         }
 33         #endregion 構造函數
 34 
 35         #region 方法
 36         /// <summary>
 37         /// 簡單壓縮方法
 38         /// </summary>
 39         /// <param name="filepath">壓縮內容路徑</param>
 40         /// <param name="zippath">壓縮後文件保存路徑</param>
 41         /// <returns></returns>
 42         public bool Compress(string filepath,string zippath)
 43         {
 44             try
 45             {
 46                 if (!Directory.Exists(filepath)) return false;
 47                 CreateDirectory(zippath);
 48                 ZipFile.CreateFromDirectory(filepath, zippath);
 49             }
 50             catch (Exception ex)
 51             {
 52                 string errormes =LogHelper.ToMessage(ex);
 53                 string path = string.Empty;
 54                 path += AppDomain.CurrentDomain.BaseDirectory;
 55                 path += @"log\ZipErrorLog\Zip";
 56                 path += DateTime.Now.ToString("yyyyMMddHHmm");
 57                 path += ".txt";
 58                 LogHelper.Instance.WriteLog(path, errormes);
 59                 return false;
 60             }
 61             return true;
 62         }
 63         /// <summary>
 64         /// 簡單解壓方法
 65         /// </summary>
 66         /// <param name="zippath">壓縮文件所在路徑</param>
 67         /// <param name="savepath">解壓後保存路徑</param>
 68         /// <returns></returns>
 69         public bool DeCompress(string zippath,string savepath)
 70         {
 71             try
 72             {
 73                 if (!Directory.Exists(zippath)) return false;
 74                 ZipFile.ExtractToDirectory(zippath, savepath);
 75             }
 76             catch (Exception ex)
 77             {
 78                 string errormes = LogHelper.ToMessage(ex);
 79                 string path = string.Empty;
 80                 path += AppDomain.CurrentDomain.BaseDirectory;
 81                 path += @"log\ZipErrorLog\DEZip";
 82                 path += DateTime.Now.ToString("yyyyMMddHHmm");
 83                 path += ".txt";
 84                 LogHelper.Instance.WriteLog(path, errormes);
 85                 return false;
 86             }
 87             return true;
 88         }
 89 
 90         /// <summary>
 91         /// 指定目錄下壓縮指定類型文件
 92         /// </summary>
 93         /// <param name="filepath">指定目錄</param>
 94         /// <param name="zippath">壓縮後保存路徑</param>
 95         /// <param name="folderName">壓縮文件內部文件夾名</param>
 96         /// <param name="fileType">指定類型 格式如:*.dll</param>
 97         /// <returns></returns>
 98         public bool Compress(string filepath, string zippath,string folderName,string fileType)
 99         {
100             try
101             {
102                 IEnumerable<string> files =
103               Directory.EnumerateFiles(filepath, fileType);
104                 using (ZipArchive zipArchive =
105                   ZipFile.Open(zippath, ZipArchiveMode.Create))
106                 {
107                     foreach (string file in files)
108                     {
109                         var entryName = System.IO.Path.Combine(folderName, System.IO.Path.GetFileName(file));
110                         zipArchive.CreateEntryFromFile(file, entryName);
111                     }
112                 }
113             }
114             catch (Exception ex)
115             {
116                 string errormes = LogHelper.ToMessage(ex);
117                 string path = string.Empty;
118                 path += AppDomain.CurrentDomain.BaseDirectory;
119                 path += @"log\ZipErrorLog\Zip1";
120                 path += DateTime.Now.ToString("yyyyMMddHHmm");
121                 path += ".txt";
122                 LogHelper.Instance.WriteLog(path, errormes);
123                 return false;
124             }
125             return true;
126         }
127 
128         #region 調用方法
129         /// <summary>
130         /// 創建父級路徑
131         /// </summary>
132         /// <param name="infoPath"></param>
133         private void CreateDirectory(string infoPath)
134         {
135             DirectoryInfo directoryInfo = Directory.GetParent(infoPath);
136             if (!directoryInfo.Exists)
137             {
138                 directoryInfo.Create();
139             }
140         }
141 
142         #endregion 
143         #endregion 方法
144     }
View Code

 

尾聲

解壓壓縮的方法還有很多,但既然可以使用微軟自帶的方法,何樂而不為呢。


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

-Advertisement-
Play Games
更多相關文章
  • 一.ORM欄位 | 類型 | 說明 | | | | | AutoField | 一個自動增加的整數類型欄位。通常你不需要自己編寫它,Django會自動幫你添加欄位:\ ,這是一個自增欄位,從1開始計數。如果你非要自己設置主鍵,那麼請務必將欄位設置為\ 。Django在一個模型中只允許有一個自增欄位, ...
  • 引入模塊的方式: 1. import 模塊 2. from xxx import 模塊 一、collections 模塊 1.Counter() counter是一個計數器,主要用來計數,計算一個字元串中每個字元出現的次數 1 from collections import Counter 2 s ...
  • Python中的邏輯運算符 not, and, or and 與運算 兩者為真則為真 >>>True and True True 其中一個為假,則為假 >>>True and False False or 或運算 兩者為假則為假 >>>False or False False 其中一個為真,則為真 ...
  • ASP.NET -- 一般處理程式ashx 如果在一個html頁面向伺服器端請求數據,可用ashx作為後臺頁面處理數據。ashx適合用作數據後臺處理,相當於WebForm中的aspx.cs文件或aspx.vb文件。 入門案例:html頁面向ashx頁面請求數據,ashx作為後臺頁面返回數據。 前端h ...
  • 在上一篇博文《 "[UWP]不那麼好用的ContentDialog" 》中我們講到了ContentDialog在複雜場景下使用的幾個令人頭疼的弊端。那麼,就讓我們在這篇博文里開始愉快的造輪子之旅吧! 首先要向大家說明:這篇博文主要還是寫的構建Picker時的思考過程,如果不感興趣的,可以直接略過這篇 ...
  • 問題如圖所示: 解決辦法: 1. 啟動iis(internet information services)服務。 2. 打開左側網站列表=> 右鍵點擊自己配置的網站 => 點擊管理網站 => 點擊 瀏覽 3. 回到vs 重新打開進程列表,可以看到 w3wp.exe 進程已啟動。 ...
  • " 【.NET Core項目實戰 統一認證平臺】開篇及目錄索引 " 上篇文章我們介紹了2種網關配置信息更新的方法和擴展Mysql存儲,本篇我們將介紹如何使用Redis來實現網關的所有緩存功能,用到的文檔及源碼將會在GitHub上開源,每篇的源代碼我將用分支的方式管理,本篇使用的分支為 。 附文檔及源 ...
  • asp.net MVC Web API 由於項目需要好久沒有弄這些重溫一下,以前都覺得WebServers好用 誰知道技能更新換代實在太快,哈哈不學習就跟不上了 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...