给定一个相对路径RelativePath,一个绝对路径AbsolutePath。如何根据AbsolutePath获取RelativePath的绝对路径。
比如,RelativePath="../uploads",AbsolutePath="E:\path",那么期望的RelativePath绝对路径为"E:\uploads"。
private string GetAbsolutePath(string filePath)
{
if (Path.IsPathRooted(filePath))
{
return filePath;
}
else
{
string absolutePath = Path.Combine(AppConfig.ConfigOptions.CloudrevePath, filePath);
return Path.GetFullPath((new Uri(absolutePath)).LocalPath);
}
}
解释一下,如果filePath为根目录路径,就是带磁盘的路径,那么直接返回。否则,直接用Path.Combine获取到绝对路径,这个方法拼接到的路径为"E:\path../uploads",这种格式系统是支持的,可以直接用。为了去掉"../",就用到了Path.GetFullPath((new Uri(absolutePath)).LocalPath),这个方法就会返回"E:\uploads"