在C#中,可以使用System.IO.Compression命名空間中的ZipArchive類來實現Zip壓縮文件的預覽。以下是一個示例代碼:
using System;
using System.IO;
using System.IO.Compression;
class Program
{
static void Main()
{
string zipFilePath = "example.zip";
using (ZipArchive zip = ZipFile.Open(zipFilePath, ZipArchiveMode.Read))
{
foreach (ZipArchiveEntry entry in zip.Entries)
{
Console.WriteLine(entry.FullName);
using (Stream stream = entry.Open())
{
// 讀取文件內容并進行預覽
byte[] buffer = new byte[1024];
int bytesRead;
while ((bytesRead = stream.Read(buffer, 0, buffer.Length)) > 0)
{
Console.Write(Encoding.UTF8.GetString(buffer, 0, bytesRead));
}
}
Console.WriteLine();
}
}
}
}
在這個示例中,我們首先通過ZipFile.Open方法打開Zip文件,然后遍歷Zip文件中的所有條目,并逐個打印出文件的全名以及文件內容進行預覽。