我创建了一个包含 4000 个块的文件,块大小为 4096 字节。现在我想在不改变文件大小的情况下操作单个块并再次读取它们。实际上,我想将另一个文件中的块写入我创建的文件中的特定块。因此,我以二进制模式打开文件,如下所示:
FILE * storeFile=fopen(targetFile, "wb"); // this one I created before
FILE * sourceFILE=fopen(sourceFile,"rb");
现在我正在尝试读取指针的内容
char * ptr=malloc(4096);
...
for(i=0; i<blocks_needed; i++)
{
fread(ptr,4096,1,sourceFile);
// now I am going to the position of the blocks I want to write to
fseek(storeFile,freeBlocks[i]*4096,SEEK_SET);
// and now I am writing it to the File I created before
fwrite(ptr,4096,1,storeFile);
...
}
由于某种原因,我之前创建的文件改变了它的大小,并成为我想要写入它的文件的副本。
我究竟做错了什么?
先感谢您!