gpt4 book ai didi

c# - 如何在 c#.net 项目中添加 Ionic.Zip.dll 并使用它从文件夹创建 zip?

转载 作者:行者123 更新时间:2023-11-30 19:58:25 25 4
gpt4 key购买 nike

我是使用 Visual Studio 2010 Express 的 c#.net 新手。我有一项任务是从包含图像文件和一些文本文件的文件夹中创建一个 zip 文件。我已获得 Ionic.Zip.dll 用于压缩文件夹。但我不知道从哪里开始。 我创建了一个 c# 项目和一个函数,该函数采用文件夹路径并返回 .zip 文件的路径。我不知道如何将这个 dll 添加到我的项目中以及如何使用它。我找到了很多代码片段,但是如何开始......

以下是我准备制作 zip 的函数:

 public static String Zip(String folderPath)
{
String zipFilePath = null;
try
{


}
catch (Exception ex)
{
MessageBox.Show("" + ex.Message, "LN Exception", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
return zipFilePath;
}

所以请帮助开始。 .先感谢您 。 .

最佳答案

要添加引用,请右键单击您的项目并选择“添加引用”

enter image description here

然后浏览并添加文件

enter image description here

下面是向您展示如何将文件添加到 zip 的基本代码

 using (ZipFile zip = new ZipFile())
{
zip.AddFiles(.....);
zip.Save(....);

}

在上面代码示例中的点处,使用智能感知并填写所需的参数。

我们不会在这里为您完成所有任务,但这将帮助您入门。

关于c# - 如何在 c#.net 项目中添加 Ionic.Zip.dll 并使用它从文件夹创建 zip?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27009422/

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