有什么方法可以访问吗? 有一些文本文件,如john.txt micheal.txt james.txt ....
我可以使用以下代码访问它们:
ifstream file1( "james.txt", ios::in );
我可以打开像这样的文件吗?
string name = "james"; ifstream file1( name, ios::in )
答案 0 :(得分:4)
也许你可以尝试类似的东西:
ifstream file1((name + ".txt").c_str(), ios::in);
答案 1 :(得分:-2)
试试这个:
char name[]="james.txt";
ifstream file1( name, ios::in );