Possible Duplicate:
2GB limit on file size when using fwrite in C?
我意识到对于我的C编译器,fread函数只能正确地读取小于2GB(2147483648)的文件。我想知道我们是否可以读取超过2GB的文件。谢谢
最佳答案
您需要使用large file support编译。或者,在某些平台上可以使用fopen64
。
Possible Duplicate:
2GB limit on file size when using fwrite in C?
我意识到对于我的C编译器,fread函数只能正确地读取小于2GB(2147483648)的文件。我想知道我们是否可以读取超过2GB的文件。谢谢
最佳答案
您需要使用large file support编译。或者,在某些平台上可以使用fopen64
。