文件光标移动操作lseek()
程序员文章站
2022-04-08 16:05:55
...
#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
推荐阅读