这个还是比较简单的,从一个里边取出,并将其放入另一个里边
-
#include
#include
#include
// 文件的复制,就是讲文件from.txt复制到to.txt中需要的
void main()
{
fstream file_from("d:\\from.txt", ios::in);
if (!file_from)
{
cout<<"文件打开错误!"<
abort();
}
fstream file_to("d:\\to.txt", ios::out);
if (!file_to)
{
cout<<"文件打开错误!"<
abort();
}
char ch;
while(file_from.get(ch))
{
file_to.put(ch);
}
file_from.close();
file_to.close();
}
阅读(1287) | 评论(0) | 转发(0) |