string basepath = @"C:\somefolder\subfolder\bin"; // is defined in runtime
string relative = @"..\..\templates";
string absolute = Magic(basepath, relative); // should be "C:\somefolder\templates"
你能幫我用Magic
方法嗎?希望不要太複雜的代碼。如何從包含「..」的基本路徑和相對路徑獲取絕對文件路徑?
在.NET Framework中是否存在「Magic
」方法?
不錯! 'Path.GetFullPath(Path.Combine(basepath,relative))'返回我需要的。 – 2010-06-29 10:16:04