ifstream File("C:\\File1\\");
std::string Line;
while( getline(File, Line, ',') )
{
// do stuff
}
// the end of the file is here
It's as simple as that ;)
And I wouldn't use 'File' as a name because it looks to much like : FILE. Something like 'infile' would be better IMO.
Nick Evan
Not a Llama
10,112 posts since Oct 2006
Reputation Points: 4,142
Solved Threads: 403
Well do you mean the end of the c++ program or the end of "file.txt" as you have mentioned in the program?
Sky Diploma
Practically a Posting Shark
865 posts since Mar 2008
Reputation Points: 673
Solved Threads: 131