|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
我的程序可以达到小甲鱼老师说的复制文件。可还是和原来的文件有差别,就是把原来的空格和回车行没了?
#include <FSTREAM>
#include <IOSTREAM>
using namespace std ;
int main(int argc , char *argv[])
{
if (argc != 3)
{
cerr << "cppyfile sources dest\n";
exit(EXIT_FAILURE);
}
ifstream in( argv[1], ios::in );
if ( !in )
{
cerr << "open file fail" << endl ;
return 0;
}
ofstream out( argv[2], ios::out );
if ( !out )
{
cerr << "open fiel fail" << endl;
in.close();
return 0;
}
char x;
while ( in >> x )
{
out << x ;
}
out << endl;
in.close();
out.close();
cout << " copy a file success !" << endl;
system("pause");
return 0;
} |
|