我已经使用在我的项目位置动态创建了一个文本文件
string path = Server.MapPath("~") + "\\Images\\abc.png";
FileStream fs = File.Open(path, FileMode.OpenOrCreate);
但我无法读取该文件,因为它被发现不包含在项目中。包括手动是唯一的方法吗?我们如何动态地实现这一点?
我已经使用在我的项目位置动态创建了一个文本文件
string path = Server.MapPath("~") + "\\Images\\abc.png";
FileStream fs = File.Open(path, FileMode.OpenOrCreate);
但我无法读取该文件,因为它被发现不包含在项目中。包括手动是唯一的方法吗?我们如何动态地实现这一点?