Trouble opening large file
-
I'm having trouble opening a 3 GB file. I've never had to open a file so large before and I'm nost sure what to do. I've tried fopen and open functions but the program fails to open the file. Any suggestions?
How are you attempting to open it? The
fopen()
andopen()
functions should be limited to older C programs. For newer Windows programs, useCreateFile()
instead.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
How are you attempting to open it? The
fopen()
andopen()
functions should be limited to older C programs. For newer Windows programs, useCreateFile()
instead.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
I'm having trouble opening a 3 GB file. I've never had to open a file so large before and I'm nost sure what to do. I've tried fopen and open functions but the program fails to open the file. Any suggestions?
You're still in 32-bit land with 3GB, but this may help: http://www.naughter.com/cfile64.html[^]
-
You're still in 32-bit land with 3GB, but this may help: http://www.naughter.com/cfile64.html[^]