获取项目资源文件夹路径

时间:2016-08-02 10:18:50

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

我想将我的项目资源文件夹作为路径引用。 如果我正在使用

C:\\MYDEV\\MyProject\\Resources

结果为

.naturalWidth

我怎么能得到     " .naturalHeight"

1 个答案:

答案 0 :(得分:2)

首先,你可以获得项目使用的文件夹:

var projectPath =  Directory.GetParent(Directory.GetCurrentDirectory()).Parent.FullName;

然后将其与您的资源文件夹

组合
string filePath = Path.Combine(projectPath, "Resources");

string filePath = Path.Combine(System.IO.Path.GetFullPath(@"..\..\"), "Resources");