gpt4 book ai didi

C# 列出 ZIP 文件内容 - 使用 ZipArchive 类

转载 作者:行者123 更新时间:2023-11-30 16:18:23 27 4
gpt4 key购买 nike

我想使用“ZipArchive”类获取 ZIP 文件中的内容列表。

我正在使用来自 MSDN 的示例:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO.Compression;
using System.IO.Compression.dll;

namespace Zip_Extractor
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
using (FileStream zipToOpen = new FileStream(@"c:\users\exampleuser\release.zip", FileMode.Open))
{
using (ZipArchive archive = new ZipArchive(zipToOpen, ZipArchiveMode.Update))
{
ZipArchiveEntry readmeEntry = archive.CreateEntry("Readme.txt");
using (StreamWriter writer = new StreamWriter(readmeEntry.Open()))
{
writer.WriteLine("Information about this package.");
writer.WriteLine("========================");
}
}
}
}
}
}

但是,我得到了错误

'Namespace for 'ZipArchive could not be found'.

我可以确认应用程序的“目标框架”是 .NET Framework 4.5。

谁能指出我正确的方向?

最佳答案

添加对 System.IO.CompressionSystem.IO.Compression.FileSystem 的引用。

查看 David Anderson 的博客:http://www.danderson.me/dotnet/zipfile-class-system-io-compression-filesystem/

希望对您有所帮助!

关于C# 列出 ZIP 文件内容 - 使用 ZipArchive 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16189477/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com