I want to open a file for reading, the C++ way. I need to be able to do it for:
text files, which would involve some sort of read line function.
#include ifstream infile; infile.open(**file path**); while(!infile.eof()) { getline(infile,data); } infile.close();