溫馨提示×

C# Zip壓縮文件目錄如何操作

c#
小樊
208
2024-07-13 14:26:26
欄目: 編程語言

在C#中,可以使用System.IO.Compression命名空間中的ZipFile類來壓縮文件目錄。以下是一個示例代碼,演示了如何壓縮一個文件夾:

using System;
using System.IO;
using System.IO.Compression;

class Program
{
    static void Main()
    {
        string startPath = @"C:\example\folderToCompress";
        string zipPath = @"C:\example\result.zip";

        ZipFile.CreateFromDirectory(startPath, zipPath);
    }
}

在上面的示例中,我們首先指定要壓縮的文件夾路徑startPath,然后指定壓縮后的Zip文件路徑zipPath。然后使用ZipFile.CreateFromDirectory方法將文件夾壓縮為一個Zip文件。

需要注意的是,ZipFile類是.NET Framework 4.5及以上版本中的新功能,因此在更早的版本中可能無法使用。如果需要在較早的版本中進行壓縮操作,可以考慮使用第三方庫,如SharpZipLib。

0