微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

C fwrite()写的比预期的要多

复制文件时遇到问题

码:

bool done;
    FILE* fin;
    FILE* fout;
    const int bs = 1024*64;//64 kb
    char* buffer[bs];
    int er,ew,br,bw;
    long long int size = 0;
    long long int sizew = 0;
    er = fopen_s(&fin,s.c_str(),"rb");
    ew = fopen_s(&fout,s2.c_str(),"wb");
    if(er == 0 && ew == 0){
        while(br = fread(buffer,1,bs,fin)){
            size += br;
            sizew += fwrite(buffer,fout);
        }
        done = true;
    }else{
        done = false;
    }
    if(fin != NULL)fclose(fin);
    if(fout != NULL)fclose(fout);

以某种方式fwrite写入整个缓冲区忽略计数值(br)

一些例子如何:

copying 595 file of 635 DONE. 524288/524288 B
copying 596 file of 635 DONE. 524288/524288 B
copying 597 file of 635 DONE. 65536/145 B
copying 598 file of 635 DONE. 65536/16384 B
copying 599 file of 635 DONE. 65536/145 B
copying 600 file of 635 DONE. 65536/67 B
copying 601 file of 635 DONE. 65536/32768 B
copying 602 file of 635 DONE. 65536/67 B

谁知道问题出在哪里?

解决方法

你应该做

sizew += fwrite(buffer,fout);

你正在传递bs,这是允许fread读取的最大数量. br是fread实际读取的数量.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐