如何打开相对于我的MVC项目的文本文件?

时间:2012-10-18 11:55:04

标签: c# asp.net asp.net-mvc-3

在我的bin文件中,我设置了som测试数据,我希望我的应用程序能够访问存储在bin/log/log00001.txt中的日志文件。

但是,在我的crontroller中,当我尝试在以下路径上使用TextReader时,它会转到其他地方:new StreamReader("log/log00001.txt")

如何阅读与项目相关的内容?

2 个答案:

答案 0 :(得分:12)

尝试使用

StreamReader reader = new StreamReader(Server.MapPath("~/bin/log/log00001.txt"));

答案 1 :(得分:5)

HttpContext.Current.Server.MapPath("~/some/path/relative/to/your/web/app")