获取文件路径的文件名

时间:2013-02-28 10:09:51

标签: c# asp.net filepath

我在使用子字符串时遇到了一些麻烦。我试图删除" \"从一个字符串,但我尝试了很多不同的东西。

例如。

C:\ Program Files \ Internet Explorer \ iexplore.exe

我试图以iexplore.exe结束

任何建议??

1 个答案:

答案 0 :(得分:3)

System.IO.Path.GetFileName:

怎么样?
System.IO.Path.GetFileName(@"C:\Program Files\Internet Explorer\iexplore.exe")