Working with large text file

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm looking for a set of functions that will allow me to work with a 1Gb+ file without loading the whole thing into memory. Anyone have any ideas

Thanks in advance for help

-J
 
Hello,

in VB.NET there is a function which is called FileOpen.

It should solve your problem.

Joerg



Jcons said:
I'm looking for a set of functions that will allow me to work with a 1Gb+
file without loading the whole thing into memory. Anyone have any ideas?
 
Jcons said:
I'm looking for a set of functions that will allow me to work with a
1Gb+ file without loading the whole thing into memory. Anyone have any
ideas?

Use a StreamReader and read a line at a time.
 
Hi Icons,

Your question is originaly one of the main reasons that databases where
designed.

Cor
I'm looking for a set of functions that will allow me to work with a 1Gb+
file without loading the whole thing into memory. Anyone have any ideas?
 
Back
Top