在C#中獲取相對路徑的方法通常使用Path類的Combine方法。該方法可以將基礎路徑和相對路徑組合在一起,得到完整的路徑。示例如下:
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是基礎路徑,relativePath是相對路徑,使用Path.Combine方法將它們組合在一起得到完整的路徑。