码迷,mamicode.com
首页 > 其他好文 > 详细

文件复制

时间:2018-05-12 13:47:25      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:binary   col   namespace   cout   using   als   new   path   out   

#include"iostream"
#include"iomanip"
#include"fstream"
using namespace std;
//复制 文件path2 到 文件path1,path1不存在就创建
bool fileCopy(char *path1,char *path2);
int main(){
    fileCopy("my1.png","屏幕截图(1).png");
    return 0;
}

bool fileCopy(char *path1,char *path2){
    fstream inf,onf;
    char *file1 = new char[1024];
    inf.open(path2,ios::in|ios::binary);
    onf.open(path1,ios::out|ios::binary);
    if(!inf||!onf){
        cout<<"open false!"<<endl;
        return false;
    }
    while(!inf.eof()){
        inf.read(file1,1024);
        onf.write(file1,1024);
    }
    inf.close();
    onf.close();
    return true;
}

 

文件复制

标签:binary   col   namespace   cout   using   als   new   path   out   

原文地址:https://www.cnblogs.com/oleolema/p/9028416.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!