Linux lseek函数的使用详解

作者:Sino_Crazy_Snail 时间:2022-07-28 22:14:18 

注:如果文章内容有误,请留言指出,谢谢合作。

名字

Name : lseek - reposition read/write file offset

lseek函数的作用是用来重新定位文件读写的位移。

头文件以及函数声明


#include <sys/types.h>
#include <unistd.h>
off_t lseek(int fd, off_t offset, int whence);

offset为正则向文件末尾移动(向前移),为负数则向文件头部(向后移)。

描述

lseek() repositions the file offset of the open file description associated with the file descriptor fd to the argument offset according to the directive whence as follows:
SEEK_SET The file offset is set to offset bytes.
SEEK_CUR The file offset is set to its current location plus offset bytes.
SEEK_END The file offset is set to the size of the file plus offset bytes.

lseek() allows the file offset to be set beyond the end of the file (but this does not change the size of the file). If data is later written at this point, subsequent reads of the data in the gap (a “hole”) return null bytes (‘\0') until data is actually written into the gap.

lseek()函数会重新定位被打开文件的位移量,根据参数offset以及whence的组合来决定:

SEEK_SET:
从文件头部开始偏移offset个字节。
SEEK_CUR:
从文件当前读写的指针位置开始,增加offset个字节的偏移量。
SEEK_END:
文件偏移量设置为文件的大小加上偏移量字节。

测试代码:


#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <stdio.h>

#define BUFFER_SIZE 1024
#define SRC_FILE_NAME "src_file"
#define DEST_FILE_NAME "dest_file"
//根据传入的参数来设置offset
#define OFFSET (atoi(args[1]))

int main(int argc, char*args[]) {
 int src_file, dest_file;
 unsigned char buff[BUFFER_SIZE];
 int real_read_len, off_set;
 if (argc != 2) {
   fprintf(stderr, "Usage: %s offset\n", args[0]);
   exit(-1);
 }
 src_file = open(SRC_FILE_NAME, O_RDONLY);
 dest_file = open(DEST_FILE_NAME, O_WRONLY | O_CREAT, S_IREAD | S_IWRITE );//owner权限:rw
 if (src_file < 0 || dest_file < 0) {
   fprintf(stderr, "Open file error!\n");
   exit(1);
 }
 off_set = lseek(src_file, -OFFSET, SEEK_END);//注意,这里对offset取了相反数
 printf("lseek() reposisiton the file offset of src_file: %d\n", off_set);
 while((real_read_len = read(src_file, buff, sizeof(buff))) > 0) {
   write(dest_file, buff, real_read_len);
 }
 close(dest_file);
 close(src_file);
 return 0;
}

Linux lseek函数的使用详解

结果解析

观察offset以及dest_file和src_file文件的大小不难看出:程序通过lseek函数将src_file文件指针重新定位到文件末尾 + offset(注意,本程序对offset取了相反数,即文件末尾 + (-offset))处,然后从文件末尾 + offset处开始向前复制文件到dest_file中。

来源:https://blog.csdn.net/Sino_Crazy_Snail/article/details/80777316

标签:Linux,lseek
0
投稿

猜你喜欢

  • 百度越来越像站内搜索引擎了

    2009-02-12 12:34:00
  • CentOS下命令行实现普通用户和root用户切换的实例

    2023-11-02 17:25:35
  • 微软Win 7系统vs苹果雪豹:哪个升级更划算

    2009-09-30 16:20:00
  • 谈Dedecms近期的一些隐患及如何预防风险

    2012-02-04 09:27:06
  • 搜索不更新网站怎么办?

    2008-03-21 18:41:00
  • 优化模板后GG单价终于达0.05

    2008-09-18 09:46:00
  • 史玉柱反思之作绿色征途同时在线人数破20万

    2009-11-27 08:17:00
  • 提升广告收益:把广告给最需要的人看

    2009-03-21 09:24:00
  • Windows XP系统下架设FTP服务器的步骤

    2009-09-13 12:58:00
  • 如何在Linux中的特定时间运行命令

    2022-09-26 11:31:15
  • Ecshop整合Dedecms之-Dedecms整合Ucenter教程

    2011-05-10 17:08:00
  • 在VMware Workstation中搭建VMware vSphere(图文教程)

    2023-11-04 03:32:53
  • 个人实录:博客从Z-blog转换到WordPress

    2009-01-22 13:33:00
  • 腾讯起诉搜狗输入法不正当竞争 索赔2000万元

    2009-11-14 10:17:00
  • Linux文件删除后空间未释放问题详解

    2023-11-03 03:15:42
  • 利用分类信息平台进行有效的网上推广

    2009-01-22 20:53:00
  • DNS服务器组建攻略

    2009-03-02 17:17:00
  • Windows 2000 安全检查清单-中级篇

    2009-12-02 18:49:00
  • 多位电信IT人士出席两会 互联网领域只有1人

    2010-03-07 09:18:00
  • 新站如何合理与其他网站做友情链接

    2007-10-11 17:52:00
  • asp之家 网站运营 m.aspxhome.com