1. 程式人生 > 其它 >檔案游標移動操作lseek()

檔案游標移動操作lseek()

技術標籤:個人學習筆記

#include <sys/types.h>
#include <unistd.h>

off_t lseek(int fd, off_t offset, int whence);
whence 有三個位置
SEEK_SET
SEEK_END
SEEK_CUR當前位置

offset為偏移值

lseek(fd, 0, SEEK_SET);

操作fd檔案,把游標移動到SEEK_SET,偏移值為0
返回值為偏移量offset