How can I figure out the size of a file, in bytes?

#include <stdio.h>

unsigned int fsize(char* file){
  //what goes here?
}
link|improve this question

78% accept rate
feedback

10 Answers

up vote 23 down vote accepted

Based on NilObject's code:

#include <sys/stat.h>

off_t fsize(const char *filename) {
    struct stat st; 

    if (stat(filename, &st) == 0)
        return st.st_size;

    return -1; 
}

Changes:

  • Made the filename argument a const char.
  • Corrected the struct stat definition, which was missing the variable name.
  • Returns -1 on error instead of 0, which would be ambiguous for an empty file. off_t is a signed type so this is possible.

If you want fsize() to print a message on error, you can use this:

#include <sys/stat.h>
#include <string.h>
#include <stdio.h>
#include <errno.h>

off_t fsize(const char *filename) {
    struct stat st;

    if (stat(filename, &st) == 0)
        return st.st_size;

    fprintf(stderr, "Cannot determine size of %s: %s\n",
            filename, strerror(errno));

    return -1;
}

On 32-bit systems you should compile this with the option -D_FILE_OFFSET_BITS=64, otherwise off_t will only hold values up to 2 GB. See the "Using LFS" section of Large File Support in Linux for details.

link|improve this answer
3  
This is Linux/Unix specific--probably worth pointing that out since the question didn't specify an OS. – Drew Hall Aug 2 '10 at 21:54
You could probably change the return type to ssize_t and cast the size from an off_t without any trouble. It would seem to make more sense to use a ssize_t :-) (Not to be confused with size_t which is unsigned and cannot be used to indicate error.) – Ted Percival Aug 6 '10 at 17:03
feedback

Don't use int. Files over 2 gigabytes in size are common as dirt these days

Don't use unsigned int. Files over 4 gigabytes in size are common as some slightly-less-common dirt

IIRC the standard library defines off_t as an unsigned 64 bit integer, which is what everyone should be using. We can redefine that to be 128 bits in a few years when we start having 16 exabyte files hanging around.

If you're on windows, you should use GetFileSizeEx - it actually uses a signed 64 bit integer, so they'll start hitting problems with 8 exabyte files. Foolish Microsoft! :-)

link|improve this answer
+1 for portability – Luca Martini Mar 28 at 9:25
Haha, +1 for some slightly-less-common dirt! :-D – Amigable Clark Kant May 25 at 14:27
feedback

If you're fine with using the std c library:

#include <sys/stat.h>
off_t fsize(char *file) {
    struct stat;
    if (stat(file, &stat) == 0) {
        return stat.st_size;
    }
    return 0;
}
link|improve this answer
4  
That's not standard C. It's part of the POSIX standard, but not the C standard. – Derek Park Aug 11 '08 at 21:32
feedback

Don't do this (why?):

Change the definition to int so that error messages can be transmitted, and then use fseek() and ftell() to determine the file size.

int fsize(char* file) {
  int size;
  FILE* fh;

  fh = fopen(file, "rb"); //binary mode
  if(fh != NULL){
    if( fseek(fh, 0, SEEK_END) ){
      fclose(fh);
      return -1;
    }

    size = ftell(fh);
    fclose(fh);
    return size;
  }

  return -1; //error
}
link|improve this answer
2  
Here is the report that unequivocally states that you should not do that: <a href="securecoding.cert.org/confluence/x/QwCMAg">FIO19-C. Do not use fseek() and ftell() to compute the size of a file</a>. It would be nice if you add this link to your answer, so the other people could see that clearly. – mezhaka Aug 2 '10 at 15:23
thanks. how's that? – superjoe30 Aug 2 '10 at 21:53
@mezhaka: That CERT report is simply wrong. fseeko and ftello (or fseek and ftell if you're stuck without the former and happy with limits on the file sizes you can work with) are the correct way to determine the length of a file. stat-based solutions do not work on many "files" (such as block devices) and are not portable to non-POSIX-ish systems. – R.. Oct 24 '10 at 4:30
That securecoding link is now broken. – hippietrail Apr 5 '11 at 0:18
1  
This is the only way to get the file size on many non-posix compliant systems (such as my very minimalistic mbed) – Earlz Mar 2 at 23:36
feedback

And if you're building a Windows app, use the GetFileSizeEx API as CRT file I/O is messy, especially for determining file length, due to peculiarities in file representations on different systems ;)

link|improve this answer
feedback

Matt's solution should work, except that it's C++ instead of C, and the initial tell shouldn't be necessary.

unsigned long fsize(char* file)
{
    FILE * f = fopen(file, "r");
    fseek(f, 0, SEEK_END);
    unsigned long len = (unsigned long)ftell(f);
    fclose(f);
    return len;
}

Fixed your brace for you, too. ;)

Update: This isn't really the best solution. It's limited to 4GB files on Windows and it's likely slower than just using a platform-specific call like GetFileSizeEx or stat64.

link|improve this answer
Yes, you should. However, unless there's a really compelling reason not write platform-specific, though, you should probably just use a platform-specific call rather than the open/seek-end/tell/close pattern. – Derek Park Apr 18 at 4:10
feedback

A quick search in Google found a method using fseek and ftell and a thread with this question with answers that it can't be done in just C in another way.

You could use a portability library like NSPR (the library that powers Firefox) or check its implementation (rather hairy).

link|improve this answer
feedback

You're going to need to use a library function to retrieve the details of a file. As C is completely platform independent, you're going to need to let us know what platform / operating system you're developing for!

link|improve this answer
feedback

as long as you have "iostream" available, you can do the following:

unsigned int fsize(char* file){
  long begin,end;
  ifstream myfile (file);
  begin = myfile.tellg();
  myfile.seekg (0, ios::end);
  end = myfile.tellg();  
  return end-begin;
}

is the idea. My C++ chops are a little creaky, so pushing a char* to an ifstream might not work as I wrote it... a good look at tellg() and seekg() will help you get the details.

link|improve this answer
feedback

You can open the file, go to 0 offset relative from the bottom of the file with

#define SEEKBOTTOM   2

fseek(handle, 0, SEEKBOTTOM)

the value returned from fseek is the size of the file.

I didn't code in C for a long time, but I think it should work.

link|improve this answer
2  
You shouldn't have to define something like SEEKBOTTOM. #include <stdio.h> fseek(handle, 0, SEEK_END); – sigjuice Mar 26 '09 at 5:33
feedback

Your Answer

 
or
required, but never shown

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