ftell()函数返回指定流的当前文件位置。将文件指针移到文件末尾后,我们可以使用ftell()函数获取文件的总大小。我们可以使用SEEK_END常数在文件末尾移动文件指针。
句法:
long int ftell(FILE *stream)
例:
文件:ftell.c
#include <stdio.h>
#include <conio.h>
void main (){
FILE *fp;
int length;
clrscr();
fp = fopen("file.txt", "r");
fseek(fp, 0, SEEK_END);
length = ftell(fp);
fclose(fp);
printf("Size of file: %d bytes", length);
getch();
}
输出:
Size of file: 21 bytes
评论前必须登录!
注册