filecopy.cpp
来自「这是《C/C++程序员实用大全》上面的源码」· C++ 代码 · 共 39 行
CPP
39 行
#include <iostream.h>
#include <stdlib.h>
#include <fstream.h>
void main(int argc, char **argv)
{
char buffer[1];
ifstream input(argv[1], ios::in);
if (input.fail())
{
cout << "Error opening the file " << argv[1];
exit(1);
}
ofstream output(argv[2], ios::out);
if (output.fail())
{
cout << "Error opening the file " << argv[2];
exit(1);
}
do {
input.read(buffer, sizeof(buffer));
if (input.good())
output.write(buffer, sizeof(buffer));
} while (! input.eof());
input.close();
output.close();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?