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”
上一篇: PHP5 PDO连接数据库详解
下一篇: Xilinx ISE14.2新手入门