gpt4 book ai didi

c - 自制fstat获取文件大小,总是返回0长度

转载 作者:太空狗 更新时间:2023-10-29 15:34:04 26 4
gpt4 key购买 nike

我正在尝试使用我自己的函数从文件中获取文件大小。我将使用它为数据结构分配内存以保存文件中的信息。

文件大小函数如下所示:

long fileSize(FILE *fp){
long start;
fflush(fp);
rewind(fp);
start = ftell(fp);
return (fseek(fp, 0L, SEEK_END) - start);
}

知道我在这里做错了什么吗?

最佳答案

fseek(fp, 0L, SEEK_END);
return (ftell(fp) - start);

代替

return (fseek(fp, 0L, SEEK_END) - start);

因为fseek成功时返回零,而不是您在此处期望的偏移量。

关于c - 自制fstat获取文件大小,总是返回0长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2528641/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com