如何可移植(x86 和 AMD64)寻找文件中的(>4GB)偏移量?
如何可移植(x86 和 AMD64)寻找文件中的(>4GB)偏移量?
File.seek() 在 AMD64 上接受 long,在 x86 上接受 int(或两者都接受 size_t)。
我需要它来接受 x86 上的 long 。我该怎么做?
(我有一种可怕的感觉,这是 C 语言中查找的限制,我必须进行多次相对查找才能达到 >4GB 的偏移量。)
谢谢,
Chris。
How can you portably (x86 and AMD64) seek to a (>4GB) offset in a file?
File.seek() accepts a long on AMD64 and an int on x86 (or a size_t on both).
I need it to accept a long on x86. How can I do this?
(I have horrible feeling that this is a limitation of seek in C, and that I'll have to do multiple relative seeks to get to a >4GB offset.)
Thanks,
Chris.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
std.stdio.File.seek 需要较长时间,但在 Windows 上将其转换为 int。这将是 Digital Mars 的 C 运行时库的限制。从源代码来看,有没有其他平台限制。
std.stdio.File.seek takes a long but converts it to an int on Windows. That would be a limitation of Digital Mars' C runtime library. Judging by the source code, there are no other platform limitations.