lseek函数:
作者:互联网
lseek函数:
文件偏移
linux中可以使用系统函数lseek来修改文件偏移量(读写位置)fseek的作用及参数 SEEK_SEK SEEK_CUR SEEK_END
int fseek(FILE *stream, long offset, int whence)成功返回0,失败-1
特别:超出文件末尾位置返回 0;往回超出文件头位置返回-1off_t lseek(int fd, off_t offset, int whence);失败返回-1
成功返回的值 较文件起始位置向后的偏移量
特别的: lseek允许超过文件结尾设置偏移量,文件因此会被拓展
#include <sys/types.h>
#include <unistd.h>
off_t lseek(int fd, off_t offset, int whence);
参数:
fd:文件描述符
offset:偏移量
whence:起始偏移量- SEEK_SET SEEK_CUR SEEK_END
返回值:
成功:较起始偏移量量
失败:-1 errno
应用场景:
1.文件的“读”、“写”使用同一偏移量
2.使用lseek 获取、拓展文件大小
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
int main(int argc, char *argv[])
{
int fd, n;
char msg[] = "It's a test for lseek";
char = ch;
fd = open("lseek.txt", O_RDWR | O_CREAT, 0664);
if(fd < 0)
{
perror("open error\n");
exit(1);
}
write(fd, msg, strlen(msg));
/*
如果不添加lseek函数
write操作后 文件指针偏移到文件末尾
再对该文件做 read操作 读不出数据
*/
lseek(fd, 0, SEEK_SET);
while( (n = read(fd, &ch, 1)))
{
if(n < 0)
{
prror("read error\n");
exit(1);
}
write(STDOUT_FILENO, &ch, n);
}
close(fd);
return 0;
}
标签:lseek,函数,int,偏移量,fd,include,SEEK 来源: https://blog.csdn.net/qq_38945339/article/details/114711466