命名空间
变体
操作

ftell

来自 cppreference.com
< c‎ | io
 
 
文件输入/输出
类型和对象
函数
文件访问
直接输入/输出
非格式化输入/输出
(C95)(C95)
(C95)
(C95)(C95)
(C95)
(C95)
格式化输入
(C99)(C99)(C99)(C11)(C11)(C11)     
 
在头文件 <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

[编辑] 参考文献

  • C11 标准 (ISO/IEC 9899:2011)
  • 7.21.9.4 ftell 函数 (p: 337-338)
  • C99 标准 (ISO/IEC 9899:1999)
  • 7.19.9.4 ftell 函数 (p: 303-304)
  • C89/C90 标准 (ISO/IEC 9899:1990)
  • 4.9.9.4 ftell 函数

[编辑] 另请参见

获取文件位置指示器
(函数) [编辑]
将文件位置指示器移动到文件中的特定位置
(函数) [编辑]
将文件位置指示器移动到文件中的特定位置
(函数) [编辑]
C++ 文档 针对 ftell