fseek() - C語言庫函式


C庫函式 int fseek(FILE *stream, long int offset, int whence) 設定流的檔案位置給定的偏移量。

宣告

以下是 fseek() 函式的宣告。

int fseek(FILE *stream, long int offset, int whence)

引數

  • stream -- 這是一個檔案物件的標識流的指標。

  • offset -- 這是,以抵消 where 的位元組數。

  • whence -- 這是位置偏移量新增。它指定由下列常數之一:

Constant 描述
SEEK_SET Beginning of file
SEEK_CUR Current position of the file yiibaier
SEEK_END End of file

返回值

如果成功,這個函式返回零,否則返回非零值。

例子

下面的例子演示了如何使用fseek()函式。

#include <stdio.h>

int main ()
{
   FILE *fp;

   fp = fopen("file.txt","w+");
   fputs("This is tw511.com", fp);
  
   fseek( fp, 7, SEEK_SET );
   fputs(" C Programming Langauge", fp);
   fclose(fp);
   
   return(0);
}

讓我們編譯和執行上面的程式,這將建立一個包含以下內容的檔案file.txt 。最初程式建立檔案,並寫道: This is tw511.com 但後來我們寫指標複位在第七的位置,從一開始使用 puts() 語句寫檔案包含以下內容:

This is C Programming Langauge