Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ifstream::open() function using a string as the parameter [duplicate]

I'm trying to make a program that asks for the file that they user would like to read from, and when I try to myfile.open(fileName) I get the error: "no matching function for call to std::basic_ifstream<char, std::char_traits<char> >::open(std::string&)'" at that line.

string filename;
cout<<"Enter name of file: ";
cin>>filename;
ifstream myFile;
myFile.open(filename); //where the error occurs.
myFile.close();
like image 816
SemicolonExpected Avatar asked Mar 02 '13 21:03

SemicolonExpected


1 Answers

In the previous version of C++ (C++03), open() takes only a const char * for the first parameter, instead of std::string. The correct way of calling it would then be:

myFile.open(filename.c_str());

In current C++ (C++11) that code is fine, though, so see if you can tell your compiler to enable support for it.

like image 194
hmatar Avatar answered Oct 13 '22 01:10

hmatar