我正在尝试从我的Web应用程序中读取Application_Start期间的文件。
但是在Application_Start中,我无法将文件发布到Web目录。
protected void Application_Start(object sender, EventArgs e)
{
using (StreamReader reader = File.OpenText("settings.json"))
{
}
}
该文件已添加到Web项目中,并设置为“复制到输出文件夹”。
答案 0 :(得分:2)
http://msdn.microsoft.com/en-us/library/system.web.httpserverutility.mappath(v=vs.110).aspx
使用MapPath方法返回站点根目录的实际文件系统路径。