I'm wondering if there's a C++ way of opening a file and reading the input line by line.
I encountered the following code that accomplishes the task:
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ifstream myfile;
myfile.open ("example.txt");
return 0;
}
I'm encouraged to not use any C functions or commands.
The thing is, my "example.txt" is in the form of a string, and using str.c_str() is a C function, so I guess I have two ways to solve the issue.
Is there another way to read input from a file line by line? Perhaps using something that will accept a string as a parameter for the filepath? Is there a C++ way of doing things? :)
Or, is there another way to convert the string in to a const char *, which is what the myfile.open() function needs?
Many thanks in advance!
EDIT: My lack of practivity and research led me to think c_str() was a C function, and it isn't. My apologies. Since it isn't I have found my answer.
c_str()is not a C function, it's a legitimate member function of a standard C++ library class (std::string). I don't understand your objection to it. This issue seems entirely orthogonal to your reading a file line-by-line question or have I misunderstood? – Charles Bailey Jun 9 '12 at 16:45"example.txt"altogether, is that right? That might turn out to be problematic. – Mr Lister Jun 9 '12 at 16:49