本文介绍了如何从一个路径的文件名?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要一个额外的手有些正则表达式的专家。 :)
I need some Regular expression experts for an extra hand. :)
我有不同的路径,不同的文件夹,不同数量的文件夹
I have different paths,different folders,different amount of folders.
我的问题是:如何?我得到的最后一件事 - 文件名
My question:How do I get the last thing - the filename?
例如在路径:
C:\a \b\c\d\e\fgh.ddj
C:\a\b\c\d\e\fgh.ddj
我如何得到fgh.ddj使用正则表达式?
How do I get "fgh.ddj" with regular expressions?
推荐答案
您不需要正则表达式的,你可以做到这一点就像这样,它是一个system.io辅助函数:
You don't need regex's, you can do it just like this, its a system.io helper function:
myfilename = Path.GetFileName(mypath);
这篇关于如何从一个路径的文件名?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!