ftell
来自 cppreference.com
在头文件 <stdio.h> 中定义 |
||
long ftell( FILE *stream ); |
||
返回文件流 stream
的文件位置指示器。
如果流以二进制模式打开,则此函数获得的值是从文件开头起的字节数。
如果流以文本模式打开,则此函数返回的值是不确定的,仅作为 fseek() 的输入才有意义。
内容 |
[编辑] 参数
stream | - | 要检查的文件流 |
[编辑] 返回值
成功时为文件位置指示器,失败时为 -1L。
如果发生错误,则 errno 变量将设置为实现定义的正值。
[编辑] 示例
演示 ftell()
的错误检查。向文件写入然后读取几个浮点数 (FP) 值。
运行此代码
#include <stdio.h> #include <stdlib.h> /* If the condition is not met then exit the program with error message. */ void check(_Bool condition, const char* func, int line) { if (condition) return; perror(func); fprintf(stderr, "%s failed in file %s at line # %d\n", func, __FILE__, line - 1); exit(EXIT_FAILURE); } int main(void) { /* Prepare an array of FP values. */ #define SIZE 5 double A[SIZE] = {1.1,2.,3.,4.,5.}; /* Write array to a file. */ const char* fname = "/tmp/test.bin"; FILE* file = fopen(fname, "wb"); check(file != NULL, "fopen()", __LINE__); const int write_count = fwrite(A, sizeof(double), SIZE, file); check(write_count == SIZE, "fwrite()", __LINE__); fclose(file); /* Read the FP values into array B. */ double B[SIZE]; file = fopen(fname, "rb"); check(file != NULL, "fopen()", __LINE__); long int pos = ftell(file); /* position indicator at start of file */ check(pos != -1L, "ftell()", __LINE__); printf("pos: %ld\n", pos); const int read_count = fread(B, sizeof(double), 1, file); /* read one FP value */ check(read_count == 1, "fread()", __LINE__); pos = ftell(file); /* position indicator after reading one FP value */ check(pos != -1L, "ftell()", __LINE__); printf("pos: %ld\n", pos); printf("B[0]: %.1f\n", B[0]); /* print one FP value */ return EXIT_SUCCESS; }
可能的输出
pos: 0 pos: 8 B[0]: 1.1