我正在尝试用fread读取一个空文件。在我创建文件时,块大小为4096,数量为40个块。目前我知道这些块是“空的”,但如果我在下面的代码中读取文件,我无法告诉它是否为空。我的意思是我期待nread为NULL或类似的东西。 你知道我要比较什么吗?谢谢!
int test()
{
char buf[4096];
FILE *file;
size_t nread;
file = fopen("out/abc.store", "r");
if (file) {
while ((nread = fread(buf, 1, sizeof buf, file)) > 0)
fwrite(buf, 1, nread, stdout);
if (ferror(file)) {
/*error handling*/
}
fclose(file);
}
编辑:
我创建了这样的文件:
char *content=(char*)malloc(uintBlockSize*uintBlockCount);
memset(content,0,uintBlockSize*uintBlockCount);
...
while (i!=0)
{
check=fwrite(content,uintBlockSize, 1, storeFile);
if (check!=1)
return 1;
i--;
}
答案 0 :(得分:0)
检查fread
是否返回0.从文档(here):
返回成功读取的元素总数。
答案 1 :(得分:-1)
fread将返回成功读取元素的数量,因此在这种情况下,fread将返回0(假设它没有读取任何内容),或者EOF(如果它是结束)。