要从ASP.NET MVC中的Controller构造函数中找到文件夹路径,可以使用以下方法:
string folderPath = HttpContext.Current.Server.MapPath("~/your-folder-name");
using System.Web.Hosting;
string folderPath = HostingEnvironment.MapPath("~/your-folder-name");
using System.IO;
string folderPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "your-folder-name");
其中,"~/your-folder-name" 是相对于应用程序根目录的文件夹路径。这些方法将返回文件夹的绝对路径。
领取专属 10元无门槛券
手把手带您无忧上云