如何不使用stdio.h读取txt文件的最后n个字符?

时间:2019-08-26 18:35:10

标签: c system-calls

我正在尝试从文本文件中读取最后n位数字,而不使用stdio.h函数调用。我不确定如何执行此操作,因为如果不使用stdio.h就无法使用fseek,而且我对系统调用也不熟悉。任何帮助将不胜感激。


#include <unistd.h>

#include <sys/types.h>
#include<sys/stat.h>
#include <fcntl.h>

int main() {

    int fd;
    char buf[200];

    fd = open("logfile.txt", O_RDONLY);
    if (fd == -1){
        fprintf(stderr, "Couldn't open the file.\n");
        exit(1); }

    read(fd, buf, 200);

    close(fd);
}

2 个答案:

答案 0 :(得分:4)

您可以使用lseek。这是原型:

off_t lseek(int fd, off_t offset, int whence);

这是将其集成到代码中的方法:

lseek(fd, -200, SEEK_END);
read(fd, buf, 200);

答案 1 :(得分:2)

只是为了多样性:

struct stat sb;

int fd = open( filename, O_RDONLY );
fstat( fd, &sb );
pread( fd, buf, 200, sb.st_size - 200 );

请注意,lseek()read()不是原子的,因此,如果有多个线程正在访问文件描述符,则将出现竞争状态。 pread()是原子的。