在VB中,可以使用Directory.GetFiles
方法來遍歷文件夾中的所有文件。以下是一個示例代碼:
Imports System.IO
Module Module1
Sub Main()
Dim folderPath As String = "C:\Folder" ' 文件夾路徑
' 檢查文件夾是否存在
If Directory.Exists(folderPath) Then
' 獲取文件夾中的所有文件
Dim files As String() = Directory.GetFiles(folderPath)
' 遍歷文件
For Each file As String In files
Console.WriteLine(file)
Next
Else
Console.WriteLine("文件夾不存在")
End If
Console.ReadLine()
End Sub
End Module
在上面的示例中,我們首先檢查文件夾是否存在,然后使用Directory.GetFiles
方法獲取文件夾中的所有文件,并將它們存儲在一個字符串數組中。然后,我們使用For Each
循環遍歷每個文件并打印文件路徑。