1. File Size Limit
- Posted by Lone_EverGreen_Ranger Sep 11, 2009
- 1118 views
- Last edited Sep 12, 2009
Hello,
I was wondering if there was a limit on much you could read or write to file? I read that there was a 2GB limit. Has this been raised with Eu 4.0?
2. Re: File Size Limit
- Posted by useless Sep 11, 2009
- 1058 views
- Last edited Sep 12, 2009
I've used Eu to munge a file 16,141,298,688 bytes. Of course i did not try random filepos(), i used gets() and went start to finish, breaking the big file into records in smaller files.
useless
3. Re: File Size Limit
- Posted by Lone_EverGreen_Ranger Sep 12, 2009
- 1063 views
I've used Eu to munge a file 16,141,298,688 bytes. Of course i did not try random filepos(), i used gets() and went start to finish, breaking the big file into records in smaller files.
useless
Well what about writing to a file? I plan on writing a lot of data to a file, will it hold more than 2GB. I know 2GB is a lot, but I may need more than that.
4. Re: File Size Limit
- Posted by useless Sep 12, 2009
- 1061 views
I've used Eu to munge a file 16,141,298,688 bytes. Of course i did not try random filepos(), i used gets() and went start to finish, breaking the big file into records in smaller files.
useless
Well what about writing to a file? I plan on writing a lot of data to a file, will it hold more than 2GB. I know 2GB is a lot, but I may need more than that.
I have not tried puts() to a file, but i see no reason it won't work.
useless
5. Re: File Size Limit
- Posted by jimcbrown (admin) Sep 12, 2009
- 1042 views
Hello,
I was wondering if there was a limit on much you could read or write to file? I read that there was a 2GB limit. Has this been raised with Eu 4.0?
Yes, Eu 4.0 uses 64bit file i/o.
6. Re: File Size Limit
- Posted by Lone_EverGreen_Ranger Sep 12, 2009
- 1002 views
Hello,
I was wondering if there was a limit on much you could read or write to file? I read that there was a 2GB limit. Has this been raised with Eu 4.0?
Yes, Eu 4.0 uses 64bit file i/o.
Ah that's very good, that means we can have very big files with Eu 4.0. Thank you.