文件名字,我有這樣的代碼:獲取目錄
Try
For Each file As String In My.Computer.FileSystem.GetFiles("directory")
FormMain.listbox.Items.Add(file)
Next
Catch
End Try
它會給我的目錄文件列表(比如:C:\ DIR \ file.txt的),但我需要得到唯一的文件名(如:file.txt) - 不帶地址的名稱。 在此先感謝!
查看['Path'](https://msdn.microsoft.com/en-us/library/System.IO.Path(v = vs.110).aspx)類。它在這個領域有許多有用的方法,其中之一就是你正在尋找的東西。 –
@JamesThorpe幫助 - 謝謝 – user4653508