在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函數獲取移動后的文件指針位置。