Y
ykkfc
Each text file has its records separated by a vblf
character. There isn't any vbcr character in it so I
cannot use "line input" in my code. The file size is
unknown. What is the best way to open and read its content?
At present I use these 2 statements to process the data:
Open <my-file-name> for input as #1
Line input #1, tmpStringVariable
So I did not specify the buffer size in the open
statement. It looks to me the whole file is just read in
ok. My codes search for the character vblf to find out
where a record ends (and the next record starts).
I think even if the input file is very large, the system
will be able to handle it without problem. Can someone
confirm me?
character. There isn't any vbcr character in it so I
cannot use "line input" in my code. The file size is
unknown. What is the best way to open and read its content?
At present I use these 2 statements to process the data:
Open <my-file-name> for input as #1
Line input #1, tmpStringVariable
So I did not specify the buffer size in the open
statement. It looks to me the whole file is just read in
ok. My codes search for the character vblf to find out
where a record ends (and the next record starts).
I think even if the input file is very large, the system
will be able to handle it without problem. Can someone
confirm me?