要获取路径中的文件名,可以使用System.IO.Path类中的GetFileName方法。示例如下:
using System;
class Program
{
static void Main()
{
string path = @"C:\Users\Username\Documents\example.txt";
string fileName = System.IO.Path.GetFileName(path);
Console.WriteLine(fileName); // 输出 example.txt
}
}
上面的代码中,我们定义了一个路径字符串path,然后使用Path.GetFileName方法获取路径中的文件名,并将其存储在fileName变量中。最后,我们通过Console.WriteLine输出文件名。