我想将我的项目资源文件夹作为路径引用。 如果我正在使用
C:\\MYDEV\\MyProject\\Resources
结果为
.naturalWidth
我怎么能得到
" .naturalHeight
"
答案 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");