Heim > Artikel > Backend-Entwicklung > In C/C++ wird die Funktion fseek() verwendet, um die Position des Dateizeigers in der Datei zu verschieben.
fseek()在C语言中用于将文件指针移动到特定位置。偏移量和流是指针的目标,它们在函数参数中给出。如果成功,它返回零。如果不成功,它返回非零值。
以下是C语言中fseek()的语法:
int fseek(FILE *stream, long int offset, int whence)
这里是在fseek()中使用的参数:
stream − 这是用于标识流的指针。
offset − 这是从位置开始的字节数。
whence − 这是偏移量添加的位置。
whence由以下常量之一指定。
SEEK_END − 文件末尾。
SEEK_SET − 文件开头。
SEEK_CUR − 文件指针的当前位置。
这是C语言中fseek()的一个示例。
假设我们有一个名为“demo.txt”的文件,其中包含以下内容:
This is demo text! This is demo text! This is demo text! This is demo text!
现在让我们看看代码。
#include<stdio.h> void main() { FILE *f; f = fopen("demo.txt", "r"); if(f == NULL) { printf("\n Can't open file or file doesn't exist."); exit(0); } fseek(f, 0, SEEK_END); printf("The size of file : %ld bytes", ftell(f)); getch(); }
The size of file : 78 bytes
Das obige ist der detaillierte Inhalt vonIn C/C++ wird die Funktion fseek() verwendet, um die Position des Dateizeigers in der Datei zu verschieben.. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!