How can I get the file size of a file in C when the file size is greater than 4gb?

ftell returns a 4 byte signed long, limiting it to two bytes. stat has a variable of type off_t which is also 4 bytes (not sure of sign), so at most it can tell me the size of a 4gb file.

What if the file is larger than 4 gb?

link|improve this question

67% accept rate
5  
On which OS? This isn't completely standardised. – Andrew McGregor May 10 '10 at 4:39
1  
Can this help you: stackoverflow.com/questions/238603/… – Boris May 10 '10 at 4:43
feedback

3 Answers

On Linux with glibc, ftell returns an off_t; depending on the flags off_t may be 32 bit or may be 64 bit.

On Linux, you can get the appropriate flags to have a 64 bit off_t by doing getconf LFS_CFLAGS (LFS stands for large-file-support).

link|improve this answer
feedback

On Windows, GetFileSize[Ex] is what you use.

link|improve this answer
feedback

try

#define _LARGEFILE64_SOURCE 1
#define _FILE_OFFSET_BITS 64

i think that increases the size of off_t to 64 bits on some operating systems

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.