欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

文件光标移动操作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

相关标签: 个人学习笔记