Does anybody know if and how I can use the IO function, like in VB studio '05/'06
Here is an example from how to use it in VB studio.
Dim allFileContents As New List(Of String)
For Each path As String In IO.Directory.GetFiles("C:\SavedGames\", "Name.txt", IO.SearchOption.AllDirectories)
allFileContents.AddRange(IO.File.ReadAllLines(path))
Next path
ListBox1.DataSource = allFileContentsSo is it possible to use IO like this or in a different in VBS?
TIA
