狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

搞懂C#文件壓縮:SharpZipLib vs. DotNetZip,功能對比與實用代碼一網打盡!

admin
2023年12月3日 22:51 本文熱度 920


在C#中,有兩個熱門的文件壓縮解析類庫分別是SharpZipLib和DotNetZip。以下是它們的簡要介紹以及使用實例代碼。

1. SharpZipLib

功能:

  • 支持ZIP和GZip格式的壓縮和解壓縮。

  • 提供了對Tar和BZip2格式的支持。

  • 輕量級,易于使用。

優點:

  • 開源,廣泛使用。

  • 靈活性較高,適用于多種壓縮需求。

使用實例:

using System;

using ICSharpCode.SharpZipLib.Zip;


class Program

{

    static void Main()

    {

        string sourceFolder = @"C:\Path\To\Your\Folder";

        string zipFile = @"C:\Path\To\Your\Archive.zip";


        ZipDirectory(sourceFolder, zipFile);

        Console.WriteLine("Compression completed.");


        string extractFolder = @"C:\Path\To\Your\Extracted";

        UnzipFile(zipFile, extractFolder);

        Console.WriteLine("Extraction completed.");

    }


    static void ZipDirectory(string sourceFolder, string zipFile)

    {

        using (ZipOutputStream zipStream = new ZipOutputStream(System.IO.File.create(zipFile)))

        {

            zipStream.SetLevel(9); // 0 - store only to 9 - means best compression


            ZipFolder(sourceFolder, sourceFolder, zipStream);


            zipStream.Finish();

            zipStream.Close();

        }

    }


    static void ZipFolder(string rootFolder, string currentFolder, ZipOutputStream zipStream)

    {

        string[] files = System.IO.Directory.GetFiles(currentFolder);


        foreach (string file in files)

        {

            ZipFile(zipStream, currentFolder, file);

        }


        string[] subFolders = System.IO.Directory.GetDirectories(currentFolder);

        foreach (string folder in subFolders)

        {

            ZipFolder(rootFolder, folder, zipStream);

        }

    }


    static void ZipFile(ZipOutputStream zipStream, string rootFolder, string filePath)

    {

        byte[] buffer = new byte[4096];


        string relativePath = filePath.Substring(rootFolder.Length + 1);


        ZipEntry entry = new ZipEntry(relativePath);

        zipStream.PutNextEntry(entry);


        using (System.IO.FileStream fs = System.IO.File.OpenRead(filePath))

        {

            int sourceBytes;

            do

            {

                sourceBytes = fs.Read(buffer, 0, buffer.Length);

                zipStream.Write(buffer, 0, sourceBytes);

            } while (sourceBytes > 0);

        }

    }


    static void UnzipFile(string zipFile, string extractFolder)

    {

        using (ZipInputStream zipStream = new ZipInputStream(System.IO.File.OpenRead(zipFile)))

        {

            ZipEntry entry;

            while ((entry = zipStream.GetNextEntry()) != null)

            {

                string entryName = entry.Name;


                string fullZipToPath = System.IO.Path.Combine(extractFolder, entryName);


                string directoryName = System.IO.Path.GetDirectoryName(fullZipToPath);

                if (directoryName.Length > 0)

                {

                    System.IO.Directory.createDirectory(directoryName);

                }


                if (entry.IsFile)

                {

                    byte[] buffer = new byte[4096];

                    using (System.IO.FileStream streamWriter = System.IO.File.create(fullZipToPath))

                    {

                        int sourceBytes;

                        do

                        {

                            sourceBytes = zipStream.Read(buffer, 0, buffer.Length);

                            streamWriter.Write(buffer, 0, sourceBytes);

                        } while (sourceBytes > 0);

                    }

                }

            }

        }

    }

}


2. DotNetZip

功能:

  • 支持ZIP格式的壓縮和解壓縮。

  • 提供了對多卷和自解壓縮ZIP文件的支持。

  • 具有更簡單的API,易于使用。

優點:

  • 使用方便,簡潔明了。

  • 集成度高,適合快速實現文件壓縮解壓縮功能。

使用實例:

using System;

using Ionic.Zip;


class Program

{

    static void Main()

    {

        string sourceFolder = @"C:\Path\To\Your\Folder";

        string zipFile = @"C:\Path\To\Your\Archive.zip";


        ZipDirectory(sourceFolder, zipFile);

        Console.WriteLine("Compression completed.");


        string extractFolder = @"C:\Path\To\Your\Extracted";

        UnzipFile(zipFile, extractFolder);

        Console.WriteLine("Extraction completed.");

    }


    static void ZipDirectory(string sourceFolder, string zipFile)

    {

        using (ZipFile zip = new ZipFile())

        {

            zip.AddDirectory(sourceFolder);

            zip.Save(zipFile);

        }

    }


    static void UnzipFile(string zipFile, string extractFolder)

    {

        using (ZipFile zip = ZipFile.Read(zipFile))

        {

            zip.ExtractAll(extractFolder, ExtractExistingFileAction.OverwriteSilently);

        }

    }

}

以上兩個例子都提供了基本的目錄壓縮和解壓縮功能,你可以根據具體需求進行進一步定制。確保在實際項目中進行充分的測試和適當的錯誤處理。


該文章在 2023/12/3 22:51:17 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved