日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:52000
  • 待審:37
  • 小程序:12
  • 文章:1037587
  • 會員:756


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

1. SharpZipLib

功能:

  • 支持ZIP和GZip格式的壓縮和解壓縮。
  • 提供了對Tar和BZip2格式的支持。
  • 輕量級,易于使用。

優(yōu)點:

  • 開源,廣泛使用。
  • 靈活性較高,適用于多種壓縮需求。

使用實例:

using System;
using ICSharpCode.SharpZipLib.Zip;

class Program
{
    static void MAIn()
    {
        string sourceFolder = @"C:PathToYourFolder";
        string zipFile = @"C:PathToYourArchive.zip";

        ZipDirectory(sourceFolder, zipFile);
        Console.WriteLine("Compression completed.");

        string extractFolder = @"C:PathToYourExtracted";
        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,易于使用。

優(yōu)點:

  • 使用方便,簡潔明了。
  • 集成度高,適合快速實現(xiàn)文件壓縮解壓縮功能。

使用實例:

using System;
using Ionic.Zip;

class Program
{
    static void Main()
    {
        string sourceFolder = @"C:PathToYourFolder";
        string zipFile = @"C:PathToYourArchive.zip";

        ZipDirectory(sourceFolder, zipFile);
        Console.WriteLine("Compression completed.");

        string extractFolder = @"C:PathToYourExtracted";
        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);
        }
    }
}

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

分享到:
標簽:C#
用戶無頭像

網(wǎng)友整理

注冊時間:

網(wǎng)站:5 個   小程序:0 個  文章:12 篇

  • 52000

    網(wǎng)站

  • 12

    小程序

  • 1037587

    文章

  • 756

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨大挑戰(zhàn)2018-06-03

數(shù)獨一種數(shù)學游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數(shù)有氧達人2018-06-03

記錄運動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定