Here is my code. The file abc.csv exists and is full of data.
Dim strContent As String
Dim int As Integer
Open "C:\abc.csv" For Input As #int
strContent = Input(LOF(int), int)
Close #int
The error that I get is that the code proceeds as if the file never existed...but it does exist in the C:\ drive directory. I made extra sure of it. C:\abc.csv is there....What am I missing?