我怎么能读.txt文件在我的项目根

本文关键字:我的 项目 文件 怎么能 txt | 更新日期: 2023-09-27 18:11:34

我在MVC中有一个项目,我想在项目根中读取一个。txt文件。

因为我会把这个解决方案发给我的搭档,他只会点击运行。我已经尝试使用Combine代码,但我有一个错误,如"路径不存在"。

var path = Path.Combine(Directory.GetCurrentDirectory(), @"'CustomerFile-2015-07-30T1510.txt");
System.IO.StreamReader file = new System.IO.StreamReader(path);

我怎么能读.txt文件在我的项目根

既然是ASP。. NET MVC项目,我建议使用Server.MapPath("~")来获得你的ASP。网络应用程序。

var root = Server.MapPath("~");
var path = Path.Combine(root, @"CustomerFile-2015-07-30T1510.txt");
System.IO.StreamReader file = new System.IO.StreamReader(path);