阅读量:0
在C语言中,可以使用ftell函数来获取当前文件指针的位置,然后利用fseek函数来移动文件指针到指定位置进行文件定位操作。
以下是一个示例代码:
#include <stdio.h> int main() { FILE *file = fopen("example.txt", "r"); if (file == NULL) { printf("Error opening file.\n"); return 1; } // 获取当前文件指针的位置 long position = ftell(file); printf("Current position: %ld\n", position); // 移动文件指针到指定位置 fseek(file, 10, SEEK_SET); // 获取移动后的文件指针位置 position = ftell(file); printf("New position: %ld\n", position); fclose(file); return 0; }
在上面的示例中,首先打开一个文件,并使用ftell函数获取当前文件指针的位置。然后使用fseek函数将文件指针移动到离文件开头偏移10个字节的位置。最后再次使用ftell函数获取移动后的文件指针位置。