我想从当前的 Executing 程序集返回三个步骤,以便获得那里存在的文件夹的名称。使用 ..\..\..\ 无法满足我的要求。
所以建议。
谢谢
获取执行程序集的路径
Uri path = (new System.Uri(Assembly.GetExecutingAssembly().CodeBase));
然后你可以做你的东西(可能看看段属性)或在路径后添加......\
// get path and transform into FileInfo
FileInfo fi = new FileInfo(path.LocalPath);
// now you can go up with property Parent
var directory = fi.Directory.Parent;