gpt4 book ai didi

.net - 将我的 asp.net mvc web 应用程序发布到 IIS 后,无法上传我的内容文件夹中的文件

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

我有以下操作方法,它将上传的文件添加到文件夹:-

if (ModelState.IsValid)
{
string ADusername = User.Identity.Name.Substring(User.Identity.Name.IndexOf("\\") + 1);
repository.InsertOrUpdateDataCenter(dc, ADusername);
repository.Save();
if (DataCenterfile != null)
{
var fileName = Path.GetFileName(DataCenterfile.FileName);

var path = Path.Combine(Server.MapPath(Url.Content("~/Content/uploads")), dc.ID + ".png");
DataCenterfile.SaveAs(path);
}
return RedirectToAction("Details", new { id = dc.ID });
}

但我收到以下异常:-

Server Error in '/TMS' Application.

Could not find a part of the path 'C:\inetpub\wwwroot\TMS\Content\uploads\97.png'.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.IO.DirectoryNotFoundException: Could not find a part of the path 'C:\inetpub\wwwroot\TMS\Content\uploads\97.png'.

Source Error:

考虑到上面的方法运行良好,但是在我将我的 Web 应用程序发布到 IIS 之后,我开始收到此错误。所以任何人都可以建议我如何解决这个问题吗?谢谢

最佳答案

相信您想要做的是将Content 文件夹的“Build Action”设置为“Content”。

您可以通过在“解决方案资源管理器”中选择文件夹,然后转到“属性”下来执行此操作。在那里你会看到“构建操作”选项。将其设置为“内容”,或者“无”。

关于.net - 将我的 asp.net mvc web 应用程序发布到 IIS 后,无法上传我的内容文件夹中的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20577574/

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