欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C# 通过文件路径获取文件名

程序员文章站 2022-06-12 08:41:31
...
string fullPath = @"c:\test.jpg";

string filename = System.IO.Path.GetFileName(fullPath);//文件名  “test.jpg”
string extension = System.IO.Path.GetExtension(fullPath);//扩展名 “.jpg”
string fileNameWithoutExtension = System.IO.Path.GetFileNameWithoutExtension(fullPath);// 没有扩展名的文件名 “test”

 

相关标签: c#