如何使用lseek读取文件的最后一个字符
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,对 lseek() 的调用应该是“
您正在寻找文件末尾,并且需要短一个字节”。
Surely the call to lseek() should be
You are seeking to the end of file and you need to be one byte short.