vb.net get file names in directory?

前端 未结 4 850
灰色年华
灰色年华 2021-02-19 09:14

I have the following code.

Dim text As String = IO.File.ReadAllText(\"C:\\Example.xtp\")

This code is specific to a single file, however I woul

4条回答
  •  北恋
    北恋 (楼主)
    2021-02-19 09:44

    Dim fileEntries As String() = Directory.GetFiles("YourPath", "*.txt")
    ' Process the list of .txt files found in the directory. '
    Dim fileName As String
    
    For Each fileName In fileEntries
        If (System.IO.File.Exists(fileName)) Then
            'Read File and Print Result if its true
            ReadFile(fileName)
        End If
        TransfereFile(fileName, 1)
    Next
    

提交回复
热议问题