嗨,我在使用此代码时遇到了一些问题
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
string line;
//const char* test = "connect";
#define test "connect"
string con("c:\\filepath\\%s.txt", test);
ifstream file;
file.open(con.c_str());
if (file.is_open()) {
while (file.good()) {
getline(file, line);
printf("setc %s\n", line.c_str());
//cout << "setc " << line << endl;
}
file.close();
} else
cout << "Unable to open file";
return 0;
}
有人可以告诉我我出了什么问题
这就是我所追求的
'con' 意味着从 'test' 中获取文件名
如果你能帮助我,我将不胜感激:)