C语言文件指针如何定位到文件尾部

2024-12-01 18:32:18
推荐回答(1个)
回答1:

fseek(fp,0,SEEK_END);
这样就可以了
nFileSize = ftell(fp);

fseek(fp,0,SEEK_SET);
这样又移回来了