gpt4 book ai didi

c# - 无法将 IFormfile 转换为字符串

转载 作者:行者123 更新时间:2023-12-05 06:17:31 27 4
gpt4 key购买 nike

我正在尝试通过 IFormFile 读取一个 zip 文件,我正在浏览里面的文件以解压缩选定的扩展名并解压缩它,但我无法使用IFormFile 来读取它。它说无法将 IFormFile 转换为字符串。

关于如何解决这个问题有什么建议吗?

using (ZipArchive archive = ZipFile.OpenRead(file))
{
foreach (ZipArchiveEntry entry in archive.Entries)
{
if (entry.FullName.EndsWith(".dbf", StringComparison.OrdinalIgnoreCase))
{
RedirectToAction("Index");
}
}
}

最佳答案

因为 IFormFile != string。我想 OpenRead 需要一个文件路径。

因此,首先将IFormFile 的内容读取到一个文件中,然后使用该文件路径。

关于c# - 无法将 IFormfile 转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61652977/

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