📄 bin_copy.cpp
字号:
#include <iostream.h>
#include <stdlib.h>
#include <fstream.h>
void main(int argc, char **argv)
{
char buffer[1];
ifstream input(argv[1], ios::in | ios::binary);
if (input.fail())
{
cout << "Error opening the file " << argv[1];
exit(1);
}
ofstream output(argv[2], ios::out | ios::binary);
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -