关于文件读写
#include<iostream>#include<fstream>
using namespace std;
int main()
{
ifstream file2("D:/test.txt");
if(!file2)
{
cout<<"未打开读入文件!!!"<<endl;
system("pause");
return 0;
}
ofstream file3("D:/test2.txt");
if(!file3)
{
cout<<"未打开写入文件!!!"<<endl;
system("pause");
return 0;
}
char a;
while(file2.get(a))
file3.put(a);
file2.close();
file3.close();
system("pause");
return 0;
}
代码为什么提示(未打开读入文件!!!)D:/test.txt文件已有