c#获取文件名的方法有哪些

c#
647
2024/4/16 9:32:51
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C#中,获取文件名的方法有以下几种方式:

  1. 使用Path类的GetFileName方法:
string fileName = Path.GetFileName(filePath);
  1. 使用FileInfo类的Name属性:
FileInfo fileInfo = new FileInfo(filePath);
string fileName = fileInfo.Name;
  1. 使用LastIndexOf和Substring方法:
string fileName = filePath.Substring(filePath.LastIndexOf("\\") + 1);
  1. 使用正则表达式:
Regex regex = new Regex(@"[^\\]*$");
Match match = regex.Match(filePath);
string fileName = match.Value;

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: C#字典排序是否支持并行处理