在C#中獲取相對(duì)路徑的方法通常使用Path類的Combine方法。該方法可以將基礎(chǔ)路徑和相對(duì)路徑組合在一起,得到完整的路徑。示例如下:
using System;
using System.IO;
class Program
{
static void Main()
{
string basePath = @"C:\Users\Public";
string relativePath = @"Documents\MyFile.txt";
string fullPath = Path.Combine(basePath, relativePath);
Console.WriteLine(fullPath);
}
}
在上面的示例中,basePath是基礎(chǔ)路徑,relativePath是相對(duì)路徑,使用Path.Combine方法將它們組合在一起得到完整的路徑。