作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 ASP.NET Framework 4.7.1,我尝试压缩文件,但 Visual Studio 显示 ZipArchiveEntry
不包含ExtractToFile
的定义.
这是我的代码:
[HttpPost]
public ActionResult Index(HttpPostedFileBase file)
{
if (file == null)
return View();
string path = Server.MapPath("~/App_Data/Uploads");
using(ZipArchive archive = new ZipArchive(file.InputStream))
{
foreach(ZipArchiveEntry entry in archive.Entries)
{
if(!string.IsNullOrEmpty(Path.GetExtension(entry.FullName)))
{
entry.ExtractToFile(Path.Combine(path, entry.FullName));
}
else
{
Directory.CreateDirectory(Path.Combine(path, entry.FullName));
}
}
}
}
最佳答案
虽然大部分ZipArchive
可以通过包含对 System.IO.Compression
的引用来添加功能, 使用 ExtractToFile
选项您还需要引用 System.IO.Compression.FileSystem
.
不需要将其添加为 Using
声明,只要引用就足够了。
关于c# - 'ZipArchiveEntry' 不包含 'ExtractToFile' 的定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62166172/
首先,我清楚我正在使用带有 DefaultAppPool(集成 4.0)的 ASP.NET 4.5。我还配置了对 DefaultAppPool 用户的匿名访问。我已授予对 DefaultAppPool
使用 ASP.NET Framework 4.7.1,我尝试压缩文件,但 Visual Studio 显示 ZipArchiveEntry不包含ExtractToFile的定义. 这是我的代码: [H
我有一个 powershell 脚本,我想从中提取特定条目。我似乎无法弄清楚如何解决无法在 .NET ZipArchiveEntry 对象上找到扩展方法的错误。 下面我的脚本将运行并将“写出”zip
我是一名优秀的程序员,十分优秀!