gpt4 book ai didi

c# - ASP.NET5 MVC6 中的 App_Data 目录

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

我一直在尝试 ASP.NET5 MVC6 应用程序。在之前的版本中,有一个目录App_Data。我用这个文件夹来存储错误日志。但在最新版本中没有找到。有什么帮助吗?

最佳答案

这适用于带有 Core 2 的 ASP.NET MVC

public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
// Use this code if you want the App_Data folder to be in wwwroot
//string baseDir = env.WebRootPath;

// Use this if you want App_Data off your project root folder
string baseDir = env.ContentRootPath;

AppDomain.CurrentDomain.SetData("DataDirectory", System.IO.Path.Combine(baseDir, "App_Data"));
}

现在您可以将此代码放在需要的地方来获取 App_Data 文件夹

string dataDir = AppDomain.CurrentDomain.GetData("DataDirectory").ToString();

关于c# - ASP.NET5 MVC6 中的 App_Data 目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31579229/

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