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

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

你可能感兴趣的:(C# 通过文件路径获取文件名)