C++ 使用C++标准IO实现(可以覆盖)的cp命令(支持大文件)
#include <iostream>
#include <fstream>
using namespace std;
int main(int argc,char* argv[])
{
if(argc == 3)
{
char buf[1024]={};
int x = 0;
fstream fs(argv[1],ios::in|ios::binary...
原创
2019-08-21 16:30:16 ·
475 阅读 ·
0 评论