在Linux中,lseek函数用于设置文件偏移量。它的原型如下:
#include <unistd.h>
off_t lseek(int fd, off_t offset, int whence);
参数说明:
fd
:文件描述符,用于指定要设置偏移量的文件。offset
:偏移量,可以是正数、负数或零。正数表示向文件末尾方向移动,负数表示向文件开头方向移动,零表示从文件开始位置处开始。whence
:偏移量的起始位置。可以是以下值之一:
SEEK_SET
:相对于文件开头位置。SEEK_CUR
:相对于当前文件偏移位置。SEEK_END
:相对于文件末尾位置。返回值:
下面是一个使用lseek函数的示例:
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
int main() {
int fd = open("test.txt", O_RDWR);
if (fd == -1) {
perror("open");
return 1;
}
off_t offset = lseek(fd, 0, SEEK_END);
if (offset == -1) {
perror("lseek");
close(fd);
return 1;
}
printf("Current offset: %ld\n", offset);
close(fd);
return 0;
}
这个示例中,首先通过open函数打开一个文件,然后使用lseek函数将文件偏移量设置为文件末尾位置(0表示偏移量为0)。最后,打印出新的文件偏移量。
注意,使用lseek函数时需要注意文件打开方式。如果文件以只读方式打开(例如使用O_RDONLY标志),则lseek函数将不起作用。