我有以下代码:
Function GetSubDir(ByVal sDir)
Dim oFS As New FileSystemObject
Dim oDir
Set oDir = oFS.GetFolder(sDir)
For Each oSub In oDir.SubFolders
MsgBox oSub.Path
GetSubDir oSub.Path
Next oSub
End Function
我想修改它,以便将每个子目录路径存储到一个数组中,但是我不知道如何实现它,或者是否有可能。有人可以帮忙吗?