如何可移植(x86 和 AMD64)寻找文件中的(>4GB)偏移量?

发布于 2024-12-05 19:28:46 字数 241 浏览 0 评论 0原文

如何可移植(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 技术交流群。

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

发布评论

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

评论(1

新一帅帅 2024-12-12 19:28:46

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.

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