我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Linux lseek函数的使用详解

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Linux lseek函数的使用详解

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

名字

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:
  从文件当前读写的指针位置qHPJcCv开始,增加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 class="lazy" data-src_FILE_NAME "class="lazy" data-src_file"
#define DEST_FILE_NAME "dest_file"
//根据传入的参数来设置offset
#define OFFSET (atoi(args[1])) 

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

结果解析

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

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Linux lseek函数的使用详解

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Linux lseek函数的使用详解

注:如果文章内容有误,请留言指出,谢谢合作。 名字Name : lseek - reposition read/write file offset lseek函数的作用是用来重新定位文件读写的位移。
2022-06-04

linux下lseek函数怎么使用

lseek函数用于设置文件指针的偏移量。其函数原型为:```c#include off_t lseek(int fd, off_t offset, int whence);```参数说明:- fd:文件描述符- offset:偏移量- wh
2023-08-25

linux系统下lseek函数的详细用法

lseek函数用于在文件中定位文件偏移量。其原型为:```c#include off_t lseek(int fd, off_t offset, int whence);```- fd:文件描述符,指定要定位的文件。- offset:偏移量
2023-08-24

Linux系统调用之lseek函数

前言 如果,想要深入的学习Linux系统调用函数lseek了话,还是需要去阅读Linux系统中的帮助文档的。 具体输入命令: man 2 lseek 即可查阅到完整的资料信息。 lseek函数 lseek函数是Linux系统API中的
2023-08-18

c语言lseek函数如何使用

在C语言中,lseek函数是用于设置文件指针位置的函数。其原型如下:```c#include off_t lseek(int fd, off_t offset, int whence);```参数说明:- fd:文件描述符,用于标识要操作的
2023-08-25

linux shell 编程之函数使用详解

使用linux的shell编程,可以说函数是非常重要的内容,也是在编写各类shell脚本的时候经常用到的,这篇文章主要介绍了linux shell 编程之函数使用,需要的朋友可以参考下
2022-11-13

tensor.squeeze函数和tensor.unsqueeze函数的使用详解

本文主要介绍了tensor.squeeze函数和tensor.unsqueeze函数的使用详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
2023-03-09

MySQL函数Locate的使用详解

Locate函数主要的作用是判断一个字符串是否包含另一个字符串,如Locate(str,sub) > 0,表示sub字符串包含str字符串;Locate(str,sub) = 0,表示sub字符串不包含str字符串。该函数常常与
2022-08-15

Linux socket函数详解

LinuxSocket函数是应用程序与网络通信的工具。本指南详细介绍了创建、连接、发送和接收数据的关键函数,包括socket、bind、connect、listen、accept、send、recv和close。此外,还涵盖了重要函数,如setsockopt、getsockopt、select和poll。通过这篇文章,读者可以全面了解Linux套接字编程技术。
Linux socket函数详解
2024-04-02

Linux中stat函数和stat命令使用详解

stat函数和stat命令 linux文件里的【inode = index node】解释:要理解inode必须了解磁盘和【目录项】,inode实际是连接【目录项】和磁盘的中间物质。 图里的大圈代表硬件的磁盘,里面的小圈代表某个文件存储在磁
2022-06-03

MFC MoveWindow();函数使用详解

MFC的MoveWindow()函数用于移动和调整窗口的位置和大小。它可以用于MFC中的CWnd类的对象,包括对话框、窗口和控件等。函数的原型如下:BOOL MoveWindow(int x,int y,int nWidth,int nHe
2023-09-02

编程热搜

目录