gpt4 book ai didi

c - 如何在不使用 stdio.h 的情况下读取 txt 文件的最后 n 个字符?

转载 作者:太空狗 更新时间:2023-10-29 16:05:10 24 4
gpt4 key购买 nike

我试图在不使用 stdio.h 函数调用的情况下从文本文件中读取最后 n 个数字。我不确定如何执行此操作,因为我无法在不使用 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);
}

最佳答案

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

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

以下是如何将它集成到您​​的代码中:

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

关于c - 如何在不使用 stdio.h 的情况下读取 txt 文件的最后 n 个字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57663152/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com