这是我为扫描文件目录而设置的代码:
Dim fileArray() As String
fileArray = Directory.GetFiles(System.AppDomain.CurrentDomain.BaseDirectory & "help\")
它成功获取目录中的所有文件,但它也获得了绝对路径。例如,fileArray()
中的一个条目是:
F:\Project\Project\bin\x86\Debug\help\book_troubleshoot.html
我希望它只是:
book_troubleshoot.html
有没有办法在不解析所有数组条目来修剪路径的情况下执行此操作?
感谢。
答案 0 :(得分:14)
string filename= System.IO.Path.GetFileName(fullpathname);