您可以使用Path.GetFileName
方法来获取文件路径中的文件名。以下是一个示例代码:
using System;
using System.IO;
class Program
{
static void Main()
{
string filePath = @"C:\Users\Username\Documents\example.txt";
string fileName = Path.GetFileName(filePath);
Console.WriteLine("File Name: " + fileName);
}
}
在上面的示例中,Path.GetFileName
方法将返回example.txt
,这是文件路径filePath
中的文件名。您可以根据需要使用这个文件名做进一步的操作。