C#絕對路徑拼接相對路徑的執行個體代碼

來源:互聯網
上載者:User

做項目時發現Path.Combine方法只能支援傻瓜式的目錄拼接

複製代碼 代碼如下://絕對路徑
string absolutePath = @"C:\Program Files\Internet Explorer";
//相對路徑
string relativePath = @"..\TestPath\";
//預計拼接結果
string splicingResult = string.Empty;
Console.WriteLine(string.Format("Path.Combine(\"{0}\",\"{1}\")=\"{2}\"", absolutePath, relativePath, Path.Combine(absolutePath, relativePath)));

輸出結果為:

發現並沒有按照想像的分辨出相對路徑和絕對路徑,所以只好用正則匹配了相對路徑進行重新拼接,以下方法只支援絕對路徑+相對路徑的方式

//絕對路徑
string absolutePath = @"C:\Program Files\Internet Explorer";
//相對路徑
string relativePath = @"..\TestPath\";
//預計拼接結果
string splicingResult = string.Empty;
Console.WriteLine(string.Format("Path.Combine(\"{0}\",\"{1}\")=\"{2}\"", absolutePath, relativePath, Path.Combine(absolutePath, relativePath)));
if (!Path.IsPathRooted(relativePath))
{
//匹配相對路徑,匹配需要向上推的目錄層數
Regex regex = new Regex(@"^\\|([..]+)");
int backUp = regex.Matches(relativePath).Count;
List<string> pathes = absolutePath.Split("\\".ToCharArray()).ToList();
pathes.RemoveRange(pathes.Count - backUp, backUp);
//匹配檔案名稱,匹配需要附加的目錄層數
regex = new Regex(@"^\\|([a-zA-Z0-9]+)");
MatchCollection matches = regex.Matches(relativePath);
foreach (Match match in matches)
{
pathes.Add(match.Value);
}
//磁碟機地址取絕對路徑中的磁碟機地址
pathes[0] = Path.GetPathRoot(absolutePath);
foreach (string p in pathes)
{
splicingResult = Path.Combine(splicingResult, p);
}
}
Console.WriteLine(string.Format("Absolute Path={0}",absolutePath));
Console.WriteLine(string.Format("Relative Path={0}", relativePath));
Console.WriteLine(string.Format("Path.Combine(\"{0}\",\"{1}\")=\"{2}\"", absolutePath, relativePath, splicingResult));
Console.ReadLine();

輸出結果:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.