ftell 文件描述符?
有没有办法在原始文件描述符而不是 FILE* 上执行 ftell() 的操作(返回文件中的当前位置)?我认为应该有,因为您可以使用 lseek() 来查找原始文件描述符。
我知道我可以使用 fdopen() 创建与文件描述符相对应的 FILE*,但我不想这样做。
Is there a way to do what ftell() does (return the current position in the file) on a raw file descriptor instead of a FILE*? I think there ought to be, since you can seek on a raw file descriptor using lseek().
I know I could use fdopen() to create a FILE* corresponding to the file descriptor, but I'd rather not do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用:
Just use: