在VB中,可以使用Directory.GetFiles
方法來讀取指定文件夾下的文件名。以下是一個示例代碼:
Imports System.IO
Module Module1
Sub Main()
Dim folderPath As String = "C:\Users\Username\Documents\TestFolder"
'獲取文件夾下的所有文件名
Dim files() As String = Directory.GetFiles(folderPath)
For Each file As String In files
Console.WriteLine(file)
Next
End Sub
End Module
在上面的示例中,首先導入System.IO
命名空間,然后使用Directory.GetFiles
方法獲取指定文件夾下的所有文件名,并將其保存在一個字符串數組中。最后,使用For Each
循環遍歷數組,并輸出每個文件名到控制臺。