标签: c linux file-handling
如果我遇到feof(),然后stat显示文件已经增长,是否有办法在不执行fclose()和fopen()的情况下阅读添加的数据?< / p>
feof()
stat
fclose()
fopen()
答案 0 :(得分:7)
是。您可以在文件上调用clearerr,或执行任何搜索操作,例如fseek(f, 0, SEEK_CUR)。
clearerr
fseek(f, 0, SEEK_CUR)