//标准C库函数
#include <stdio.h>
int fseek(FILE *stream, long offset, int whence);
//linux系统函数
#include <sys/types.h>
#include <unistd.h>
off_t lseek(int fd, off_t offset, int whence);
参数:
-fd:文件描述符
-offset:偏移量
-whence:
SEEK_SET
设置文件指针的偏移量,为文件起始地址
SEEK_CUR
设置文件指针的偏移量,为当前位置+第2个参数offset的值
SEEK_END
设置文件指针的偏移量,为文件大小+第2个参数offset的值
返回值:返回文件指针的位置
作用:
1.移动文件指针到文件头: lseek(fd, 0, SEEK_SET);
2.获取当前文件指针的位置: lseek(fd, 0, SEEK_CUR);
3.获取文件长度: lseek(fd, 0, SEEK_END);
4.拓展文件的长度,如增加100字节: lseek(fd, 100, SEEK_END);
注意:拓展文件后需要写一次数据
例子:
//perror
#include <stdio.h>
//open
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
//lseek/write
#include <unistd.h>
int main()
{
int fd=open("hello.txt", O_RDWR);
if(fd==-1)
{
perror("open");
return -1;
}
int ret=lseek(fd,100,SEEK_END);
if(ret==-1)
{
perror("lseek");
return -1;
}
//写入一个空格
write(fd," ",1);
close(fd);
return 0;
}
参考:牛客网 C++高薪求职项目《Linux高并发服务器开发》1.23 lseek函数
专属优惠链接:
https://www.nowcoder.com/courses/cover/live/504?coupon=AvTPnSG
今天的文章1.23 lseek函数分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/12430.html