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
Try this:
Dim text As String = "" Dim files() As String = IO.Directory.GetFiles(sFolder) For Each sFile As String In files text &= IO.File.ReadAllText(sFile) Next