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
You will need to use the IO.Directory.GetFiles function.
Dim files() As String = IO.Directory.GetFiles("c:\") For Each file As String In files ' Do work, example Dim text As String = IO.File.ReadAllText(file) Next