1. 程式人生 > >返回文件路徑中的想要的值

返回文件路徑中的想要的值

所在 text sys ext cto get bsp 文件路徑 想要

System.IO.Path.GetFileNam(filePath) //返回帶擴展名的文件名
System.IO.Path.GetFileNameWithoutExtension(filePath) //返回不帶擴展名的文件名
System.IO.Path.GetDirectoryName(filePath) //返回文件所在目錄

System.IO.Path.GetExtension(filePath) //返回文件擴展名

返回文件路徑中的想要的值