c#相對(duì)路徑獲取的方法是什么

c#
小億
132
2024-03-04 18:53:07

在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方法將它們組合在一起得到完整的路徑。

0