我正在尝试使用 dir 函数获取一个简单的文件列表,即使有 200 个文件,结果也只返回 1 个文件。任何想法我可能在以下功能中缺少什么?
Option Compare Database
Public Sub getList()
Const strFolder As String = "c:\Users\bob\Desktop\social\"
Dim strFile As String
'strFile = Dir(strFolder & strPattern, vbNormal)
strFile = Dir(strFolder, vbNormal)
Debug.Print strFile
Do While Len(strFile) > 0
Debug.Print strFile
strFile = Dir()
Loop
End Sub