如何计算fread()读取的二进制文件大小

2025-03-29 18:53:14
推荐回答(1个)
回答1:

long int len;
fp=fopen("abc.dat","rb");
fseek(fp,0L,SEEK_END);
len=ftell(fp);
fclose(fp);