Processing files larger than 2.2GB.
- From: teuniz@xxxxxxxxx
- Date: Sat, 19 Jan 2008 02:37:11 -0800 (PST)
I always used the following functions to process files:
fopen()
fclose()
fseek()
ftell()
fwrite()
fread()
fputc()
fgetc()
The limitation of (at least some of) these functions is the maximum
filesize of 2^31 bytes.
So, to solve this I use:
fopen64()
fseeko64()
ftello64()
But for the other functions I can't find theire largefile equivalents.
Can I safely assume that they are compatibel?
Unfortunately, I can't find manpages for fopen64(), fseeko64() and
ftello64();
Where can I find more information about this matter?
.
- Follow-Ups:
- Re: Processing files larger than 2.2GB.
- From: Jan Panteltje
- Re: Processing files larger than 2.2GB.
- Prev by Date: Re: setting enviroment variable before deamon starts
- Next by Date: Re: Processing files larger than 2.2GB.
- Previous by thread: Timeout timers in an application
- Next by thread: Re: Processing files larger than 2.2GB.
- Index(es):