我在复制文件时遇到问题

代码:

    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,1,bs,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,1,br,fout);

您正在传递 bs ,这是 fread 允许读取的最大数量。 brfread 实际读取的数量。

关于C++ fwrite() 写的比预期的多,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21034776/

10-12 20:27