如果我使用 Application.StartupPath 或 AppDomain.CurrentDomain.BaseDirectory 它在 bin\debug 文件夹中搜索文件,但我必须在 mac #.net 项目中使用我的根目录“Resources\imagefile.png”中的文件夹!
Filestream fs;
fs = new Filestream(AppDomain.CurrentDomain.BaseDirectory + "folder\\imagefile.png");
那么如何编写代码来从我的根目录读取文件,尽管使用了上面的代码或目录的完整路径“@C:.......”,甚至我们不能使用 Server.MapPath。
要获取我的应用程序路径,但这会给出类似 C:\Projects\XYZ\ABC\bin\Debug
我不想要 bin\Debug 。有什么方法可以实现吗?