我把代码从infile复制到outfile,
问题是在文件末尾添加了很多垃圾

ssize_t nread;
int bufsize=512;
char buffer[bufsize];

while ( (nread=read(infile, buffer, bufsize)>0))
{
    if( write(outfile, buffer, bufsize)<nread )
    {
        close(outfile); close(infile); printf("error in write loop !\n\n");
        return (-4);
    }
}
if( nread == -1) {
  printf ("error on last read\n"); return (-5);
}//error on last read /

我该怎么做才能解决这个问题?

最佳答案

while ( (nread=read(infile, buffer, bufsize)>0))

应该是:
while ( (nread=read(infile, buffer, bufsize)) >0 )

>相比,as=具有更高的优先级。
阿尔索
write(outfile, buffer, bufsize)

您总是在写入bufsize字节数。但是在读取操作中不需要读取那么多字节。这可能发生在复制的最后一次迭代中。要解决这个问题,您应该写入nread字节数。

08-26 21:26