I'm trying to read in a 24 GB XML file in C, but it won't work. I'm printing out the current position using ftell() as I read it in, but once it gets to a big enough number, it goes back to a small number and starts over, never even getting 20% through the file. I assume this is a problem with the range of the variable that's used to store the position (long), which can go up to about 4,000,000,000 according to http://msdn.microsoft.com/en-us/library/s3f49ktz%28VS.80%29.aspx, while my file is 25,000,000,000 bytes in size. A long long should work, but how would I change what my compiler(Cygwin/mingw32) uses or get it to have fopen64?
|
|
|||||||||||||||||
|
|
|
I don't know of any way to do this in one file, a bit of a hack but if splitting the file up properly isn't a real option, you could write a few functions that temp split the file, one that uses ftell() to move through the file and swaps ftell() to a new file when its reaching the split point, then another that stitches the files back together before exiting. An absolutely botched up approach, but if no better solution comes to light it could be a way to get the job done. |
||
|
|
|
|
Unless you can use a 64-bit method as suggested by Loadmaster, I think you will have to break the file up. This resource seems to suggest it is possible using _telli64(). I can't test this though, as I don't use mingw. |
||||||
|
|
|
You might try using the OS provided file functions CreateFile and ReadFile. According to the File Pointers topic, the position is stored as a 64bit value. |
||||||||
|
|
|
Could you break the file up in to smaller components? Might be easier to deal with errors in the future... |
||
|
|
|
|
The You may have the |
||
|
