Note: If there are any errors in the article, please leave a message to point them out. Thank you for your cooperation. name Name : lseek - reposition read/write file offset The lseek function is used to reposition the file reading and writing displacement. Header files and function declarations #include <sys/types.h> #include <unistd.h> off_t lseek(int fd, off_t offset, int whence); If the offset is positive, it moves toward the end of the file (moving forward), and if it is negative, it moves toward the beginning of the file (moving backward). describe 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: 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. The lseek() function repositions the displacement of the opened file, which is determined by the combination of the offset and whence parameters: SEEK_SET: Test code: #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" //Set the offset according to the passed parameters #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 permission: rw if (src_file < 0 || dest_file < 0) { fprintf(stderr, "Open file error!\n"); exit(1); } off_set = lseek(src_file, -OFFSET, SEEK_END); //Note that the offset is negated here 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; } Result interpretation By observing the offset and the sizes of the dest_file and src_file files, it is not difficult to see that the program uses the lseek function to reposition the src_file file pointer to the end of the file + offset (note that this program takes the opposite number of offset, that is, the end of the file + (-offset)), and then starts copying the file forward from the end of the file + offset to dest_file. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Example of how to implement local fuzzy search function in front-end JavaScript
>>: How to quickly create tens of millions of test data in MySQL
Adobe Brackets is an open source, simple and powe...
(1) Each HTML tag has an attribute style, which c...
Table of contents 1. Overview 1.1 What is strict ...
Table of contents specification a. The page file ...
This article uses examples to illustrate the use ...
In development, it is often necessary to cache th...
Table of contents Preface How does antd encapsula...
Question: In index.html, iframe introduces son.htm...
1. The difference between Http and Https HTTP: It...
time(); function Function prototype: time_t time(...
Table of contents Preface 1. Image Optimization 2...
Table of contents Inheritance ES5 prototype inher...
Achieve results html <div class="containe...
Table of contents 1. Component Introduction 2. Co...
Recently, I learned about the Vue project and cam...