gpt4 book ai didi

c# - DotNetZip 保存位置

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

嗯!

 using (ZipFile zip = new ZipFile())
{
// add this map file into the "images" directory in the zip archive
zip.AddFile("c:\\images\\personal\\7440-N49th.png", "images");
// add the report into a different directory in the archive
zip.AddFile("c:\\Reports\\2008-Regional-Sales-Report.pdf", "files");
zip.AddFile("ReadMe.txt");
zip.Save("MyZipFile.zip");
}

此示例将 MyZipFile.zip 存储在“C:\Program Files (x86)\IIS Express”中,我在网上找不到任何简单的示例有没有办法更改该路径?我怀疑我是否有权在我的虚拟主机上访问那里。

最佳答案

在保存方法中或声明时更改路径。

ZipFile zip = new ZipFile("C:\\MyFile.Zip");

using (ZipFile zip = new ZipFile())
{
// add this map file into the "images" directory in the zip archive
zip.AddFile("c:\\images\\personal\\7440-N49th.png", "images");
// add the report into a different directory in the archive
zip.AddFile("c:\\Reports\\2008-Regional-Sales-Report.pdf", "files");
zip.AddFile("ReadMe.txt");
zip.Save("C:\\MyZipFile.zip");
}

更多帮助DotNetZip

关于c# - DotNetZip 保存位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11084870/

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