📅  最后修改于: 2023-12-03 15:08:14.990000             🧑  作者: Mango
在C#中,我们可以使用Path
类从给定路径中提取文件名。下面将介绍如何使用Path
类实现从给定路径中提取文件名的操作。
在开始前,需要导入以下命名空间:
using System.IO;
使用Path
类的GetFileName
方法可以从给定路径中提取出文件名,示例如下:
string filePath = "D:\\MyFiles\\example.txt";
string fileName = Path.GetFileName(filePath);
Console.WriteLine(fileName); // 输出:example.txt
如果需要从给定路径中提取不包含扩展名的文件名,可以使用Path
类的GetFileNameWithoutExtension
方法,示例如下:
string filePath = "D:\\MyFiles\\example.txt";
string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(filePath);
Console.WriteLine(fileNameWithoutExtension); // 输出:example
本文介绍了使用Path
类从给定路径中提取文件名的方法,分别介绍了包含扩展名和不包含扩展名的情况下的实现方式。使用Path
类可使得程序编写更加简洁和高效。