如何使用lseek读取文件的最后一个字符

发布于 2024-10-13 04:50:19 字数 286 浏览 6 评论 0原文

我正在尝试使用 lseek 以相反的顺序读取文件中的字符。

到目前为止,我已经:

 int finished = 1;
 char temp[1];

    while (finished > 0) {

 lseek(fileID,0,2);

 finished = read(fileID, &temp, 1);

 cout << temp[0];

    }

但是 read 总是返回 0。

关于该怎么做有什么想法吗?

I'm trying to read the characters from a file in reverse order using lseek.

So far, I have:

 int finished = 1;
 char temp[1];

    while (finished > 0) {

 lseek(fileID,0,2);

 finished = read(fileID, &temp, 1);

 cout << temp[0];

    }

But read always returns 0.

Any ideas on what to do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深者入戏 2024-10-20 04:50:19

当然,对 lseek() 的调用应该是“

lseek(fileID, -1, SEEK_END);

您正在寻找文件末尾,并且需要短一个字节”。

Surely the call to lseek() should be

lseek(fileID, -1, SEEK_END);

You are seeking to the end of file and you need to be one byte short.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文