为什么 Rebol Copy Big File 对于非常大的文件会失败,而 Windows 资源管理器却不会?

发布于 2024-08-09 19:55:23 字数 383 浏览 2 评论 0原文

我尝试了卡尔函数 http://www.rebol.com/article/0281.html

155 Mo有用。

然后我用 7 Go 测试它失败了,没有说极限。

为什么有限制我在代码中看不到任何限制的内容。

没有错误信息

>> copy-file to-rebol-file "D:\@mirror_ftp\cpmove.tar" to-rebol-file "D:\@mirror_ftp\testcopy.tar"
0:00
== none
>>

I tried carl function
http://www.rebol.com/article/0281.html

with 155 Mo it works.

Then I tested with 7 Go it fails without saying the limit.

Why is there a limit I can't see anything in code that puts a limit.

There's no error message

>> copy-file to-rebol-file "D:\@mirror_ftp\cpmove.tar" to-rebol-file "D:\@mirror_ftp\testcopy.tar"
0:00
== none
>>

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

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

发布评论

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

评论(1

撕心裂肺的伤痛 2024-08-16 19:55:23

REBOL 使用 32 位有符号整数,因此它无法读取大于 2147483647 字节 (2^31-1)(大约 2GB)的文件。 REBOL3使用64位整数,因此不会有这样的限制。

REBOL uses 32-bit signed integers, so it can't read files bigger than 2147483647 bytes (2^31-1) which is roughly 2GB. REBOL3 uses 64-bit integers, so won't have such limitation.

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