Get a list of all files inside of a directory in vb.net

后端 未结 3 1948
悲&欢浪女
悲&欢浪女 2020-12-01 14:52

How can you obtain a list of files (as a stringcollection or some other storage method) which contains the full path on the user\'s computer to the files?

Is there a

相关标签:
3条回答
  • 2020-12-01 15:32

    Add a Listbox to Windows Form and Add following code on Form Load or other events :-

    ListBox1.Items.AddRange(Directory.GetFiles("Your Directory PAth Here"))
    

    Hope IT Helps ; From Nirav

    0 讨论(0)
  • 2020-12-01 15:33
        Dim txtFiles = Directory.GetFiles("C:\Input", "*.CSV", SearchOption.TopDirectoryOnly).
            [Select](Function(nm) Path.GetFileName(nm))
    
        Dim arrayList As New System.Collections.ArrayList()
        For Each filenm As String In txtFiles
            arrayList.Add(New clsImportFiles(filenm))
        Next
    
    0 讨论(0)
  • 2020-12-01 15:39

    It looks like you want to use Directory.GetFiles() in the System.IO namespace.

    Docs here.

    0 讨论(0)
提交回复
热议问题