I use "fopen()" to open it, but it always fail, the returned file
pointer is NULL.
who knows why? thx!
It's possible that your standard C library implementation is not
capable of handling large files. Read the documentation. You could
be in a situation when you have to use OS-specific means for large
file access.
V
DominiConnor
Quant Headhunter
So you're using the GCC compiler (gcc/g++).
Read this:
http://www.daimi.au.dk/~kasperd/comp.os.linux.development.faq.html#LARGEFILE
Regards,
Larry