您好,能给段VB代码吗?就是获取文件夹下所有文件名

2024年11月18日 17:21
有1个网友回答
网友(1):

'点菜单(工程)下的(引用),勾选(Microsoft Scripting Runtime)确认
Private Sub Command1_Click()
    List1.Clear
    Dim fso As New FileSystemObject
    Dim f As File
    Dim fd As Folder
    Set fd = fso.GetFolder(App.Path & "\文件")
    For Each f In fd.Files
        List1.AddItem f.Path
        List1.AddItem f.Name
    Next
End Sub