轉載:http://blog.csdn.net/lemoncyb/article/details/16841317函數
fseek() 函數講解:
函數定義: .net
int fseek(FILE *stream, long offset, int fromwhere);指針
int fseeko(FILE *stream, off_t offset, int fromwhere);blog
int fseeko64(FILE *stream, off64_t offset, int fromwhere);it
參數: io
stream:文件指針stream
fromwhere:偏移起始位置file
offset:偏移量數據類型
功能: error
函數設置文件指針stream的位置。若是執行成功,stream將指向以fromwhere(偏移起始位置:文件頭0(SEEK_SET),當前位置1(SEEK_CUR),文件尾2(SEEK_END))爲基準,偏移offset(指針偏移量)個字節的位置。若是執行失敗(好比offset超過文件自身大小),則不改變stream指向的位置。
說明:這幾個函數惟一的不一樣是offset的數據類型不一樣,相應的可以處理的偏移量的範圍也就有大有小。
返回值:
成功,返回0,失敗返回-1,並設置errno的值,能夠用perror()函數輸出錯誤。 fseek position the file(文件) position(位置) pointer(指針) for the file referenced by stream to the byte location calculated by offset.