Hi all,

Just wondering if anyone has any advice on dealing with very large text files in C++? Basically I'm working on an app that has to scan through and pull out values from a text file which can potentially be over 20MB in size. Is ifstream good enough to load into a buffer, or is there a better way?

Thanks,

Payne747