在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方法将它们组合在一起得到完整的路径。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: C#中静态变量与应用程序配置数据