阅读量:0
在C语言中,可以使用ftell
函数来获取文件指针的位置。ftell
函数的原型如下:
long int ftell(FILE* stream);
其中,stream
是一个指向已经打开的文件的指针。
调用ftell
函数会返回当前文件指针的位置,即以字节为单位的偏移量。如果执行成功,返回值为非负数;如果发生错误,返回值为-1。
以下是一个示例代码:
#include <stdio.h> int main() { FILE* fp = fopen("example.txt", "r"); if (fp == NULL) { printf("Failed to open the file.\n"); return 1; } // 获取文件指针的位置 long int position = ftell(fp); if (position == -1) { printf("Failed to get the position of the file pointer.\n"); return 1; } printf("The position of the file pointer is %ld.\n", position); fclose(fp); return 0; }
在这个例子中,首先打开了一个名为example.txt
的文件,并将其赋值给指针fp
。然后调用ftell
函数获取文件指针的位置,并将返回值存储在变量position
中。最后打印出文件指针的位置。
需要注意的是,在调用ftell
函数之前,应该确保文件已经成功打开,并且文件指针有效。如果文件指针无效,ftell
函数的行为是未定义的。