国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

ZipArchive 的使用

2019-11-17 02:32:45
字體:
來源:轉載
供稿:網友

ZipArchive 的使用

新建一個項目,首先添加 System.IO.ComPRession.FileSystem 引用。

解壓文件

using System.IO.Compression;namespace cl{        static void Main()        {            string zipPath = @"c:/example/result.zip";            string extractPath = @"c:/example/extract";            ZipFile.ExtractToDirectory(zipPath, extractPath);        }}

壓縮單個文件

using System;using System.IO.Compression;namespace cl{  sealed class ZipCreater  {    static void Main()    {      using (var zip = ZipFile.Open("ZipCreater.zip", ZipArchiveMode.Create))      {        zip.CreateEntryFromFile(@"C:/work/ZipCreater.cs", "ZipCreater.cs");        zip.CreateEntryFromFile("ZipCreater.exe", "ZipCreater.exe");      }    }  }}

壓縮文件夾

using System;using System.IO.Compression;namespace cl{  sealed class Zip  {    static void Main(string[] args)    {      if (args.Length != 2)      {        Console.WriteLine("Usage: Zip zip-file-name directory-name");        return;      }      try { ZipFile.CreateFromDirectory(args[1], args[0]); }      catch (Exception ex) { Console.Error.WriteLine(ex.Message); }    }  }}

參考文章:

淺談 ZipArchive 類 - 銀河 - 博客園http://www.survivalescaperooms.com/skyivben/archive/2012/03/09/2388482.html


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 南岸区| 沾化县| 莲花县| 定陶县| 正宁县| 彩票| 澄江县| 淄博市| 通渭县| 黄平县| 芷江| 隆德县| 榆树市| 读书| 同德县| 渝中区| 江门市| 茶陵县| 阜新| 高要市| 沙雅县| 花莲县| 将乐县| 化州市| 竹山县| 龙山县| 黎平县| 秭归县| 乐业县| 吉隆县| 惠水县| 十堰市| 丰台区| 阿城市| 南投市| 奉化市| 雷波县| 墨脱县| 新津县| 江安县| 甘孜县|