为什么 Rebol Copy Big File 对于非常大的文件会失败,而 Windows 资源管理器却不会?
我尝试了卡尔函数 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.