在我的bin文件中,我设置了som测试数据,我希望我的应用程序能够访问存储在bin/log/log00001.txt
中的日志文件。
但是,在我的crontroller中,当我尝试在以下路径上使用TextReader时,它会转到其他地方:new StreamReader("log/log00001.txt")
如何阅读与项目相关的内容?
答案 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")