student_help
Member
- Joined
- Aug 8, 2006
- Messages
- 8
- Programming Experience
- Beginner
Hi
Would anyone be able to advise on a way that would allow a program to read from many files. I had this working for a single file but this is not acceptable for the progarm. I am trying to access the data which is stored in these files
The code i was using was
Dim FILE_NAME As String = "C:\Queue\" + "*.log" 'example file
Dim objReader As New System.IO.StreamReader(FILE_NAME)
* declares all the files in the folder
Would anyone be able to advise on a way that would allow a program to read from many files. I had this working for a single file but this is not acceptable for the progarm. I am trying to access the data which is stored in these files
The code i was using was
Dim FILE_NAME As String = "C:\Queue\" + "*.log" 'example file
Dim objReader As New System.IO.StreamReader(FILE_NAME)
* declares all the files in the folder