Possible Duplicate:
How do you determine the size of a file in C?

How can I find out the size of a file? I opened with an application written in C. I would like to know the size, because I want to put the content of the loaded file into a string, which I alloc using malloc(). Just writing malloc(10000*sizeof(char)); is IMHO a bad idea.

link|improve this question

7  
Note that sizeof(char) is 1, by definition. – Randy Proctor Oct 29 '09 at 13:44
4  
Ya, but some esoteric platform's compiler might define char as 2 bytes - then the program allocates more than is necessary. One can never be too sure. – George Edison Jan 5 '10 at 2:50
4  
@George an "esoteric platform's compiler" where sizeof(char) != 1 is not a true C compiler. Even if a character is 32 bits, it will still return 1. – Andrew Flanagan Dec 6 '10 at 17:03
5  
@George: The C (and C++) standard guarantees that sizeof(char)==1. See e.g.parashift.com/c++-faq-lite/intrinsic-types.html#faq-26.1 – sleske Feb 8 '11 at 13:40
2  
I actually prefer malloc(x*sizeof(char)); to malloc(x); when allocating x characters. Yes, they always compile to the same thing, but I like consistency with other memory allocations. – jmnben Apr 16 '11 at 1:16
feedback

closed as exact duplicate by Anna Lear Nov 28 '11 at 22:44

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

9 Answers

up vote 68 down vote accepted

You need to seek to the end of the file and then ask for the position:

fseek(fp, 0L, SEEK_END);
sz = ftell(fp);

You can then seek back to the beginning:

fseek(fp, 0L, SEEK_SET);
link|improve this answer
31  
If you use ftell, then you must open the file in binary mode. If you open it in text mode, ftell only returns a "cookie" that is only usable by fseek. – camh Oct 27 '08 at 10:14
2  
@camh - Thanks man. This comment solved a problem I had with a file sizing algorithm. For the record, one opens a file in binary mode by putting a 'b' at the end of fopen's mode string. – T.E.D. May 18 '10 at 10:42
LOL, yeah right, Windows inherited this stupid text/binary mode nonsense from DOS. This is easily forgotten nowadays. Actually the POSIX standard even mandates that any POSIX system must be able to cope with the "b" flag in fopen calls (to be compatible with the C standard!), but on the same hand it mandates, that the implementation must ignore it entirely, since this flag has no effect on POSIX systems (those don't know any such thing as a text mode and always open in binary mode). – Mecki Sep 9 '11 at 17:46
3  
Yo uh, use rewind before people forget what it means – bobobobo Sep 23 '11 at 16:55
3  
Returns a signed int, so limited to 2 GB. But on the plus side your file could be negative 2 billion bytes long, and they are prepared for that. – Seth Feb 13 at 21:07
feedback

There are two basic methods:

fseek(f, 0, SEEK_END); // seek to end of file
size = ftell(f); // get current file pointer
fseek(f, 0, SEEK_SET); // seek back to beginning of file
// proceed with allocating memory and reading the file

Or, you can use stat, if you know the filename:

struct stat st;
stat(filename, &st);
size = st.st_size;
link|improve this answer
5  
Please note that I have omitted error checking in the interest of clarity. – Greg Hewgill Oct 26 '08 at 21:23
7  
You don't need the filename - you can use fstat for that. – Tanktalus Oct 26 '08 at 21:24
2  
You need to point stat the address of the struct. The second line should be: stat(filename, &st); – Vlad the Impala Nov 3 '09 at 21:16
1  
can also use rewind(f) to move file pointer back to start of file – Kurru May 16 '11 at 23:36
1  
I have omitted error checking in the interest of -FATAL ERROR, EXITING. – Buttle Butkus Feb 3 at 9:55
show 3 more comments
feedback

If you have the file descriptor fstat() returns a stat structure which contain the file size.

   #include <sys/types.h>
    #include <sys/stat.h>
    #include <unistd.h>

// fd = fileno(f); //if you have a stream (e.g. from fopen), not a file descriptor.
    struct stat buf;
    fstat(fd, &buf);
    int size = buf.st_size;
link|improve this answer
Add "fd = fileno(f);" if you have a stream (e.g. from fopen), not a file descriptor. Needs error checking. – ysth Oct 26 '08 at 21:24
5  
Of course it needs error checking - that would just complicate the example. – PiedPiper Oct 26 '08 at 21:28
feedback

If you're on Linux, seriously consider just using the g_file_get_contents function from glib. It handles all the code for loading a file, allocating memory, and handling errors.

link|improve this answer
4  
If you're on Linux and want to have a dependency on glib, that is. – JesperE Oct 26 '08 at 22:25
1  
Not that bad of a problem, as glib is used by both GTK and KDE applications now. It's also available on Mac OS X and Windows, but it's not nearly as standard there. – Ben Combee Oct 29 '08 at 19:23
feedback

Have you considered not computing the file size and just growing the array if necessary? Here's an example (with error checking ommitted):

#define CHUNK 1024

/* Read the contents of a file into a buffer.  Return the size of the file 
 * and set buf to point to a buffer allocated with malloc that contains  
 * the file contents.
 */
int read_file(FILE *fp, char **buf) 
{
  int n, np;
  char *b, *b2;

  n = CHUNK;
  np = n;
  b = malloc(sizeof(char)*n);
  while ((r = fread(b, sizeof(char), CHUNK, fp)) > 0) {
    n += r;
    if (np - n < CHUNK) { 
      np *= 2;                      // buffer is too small, the next read could overflow!
      b2 = malloc(np*sizeof(char));
      memcpy(b2, b, n * sizeof(char));
      free(b);
      b = b2;
    }
  }
  *buf = b;
  return n;
}

This has the advantage of working even for streams in which it is impossible to get the file size (like stdin).

link|improve this answer
6  
Maybe the realloc function could be used here instead of using an intermediate pointer and having to free(). – Victor Mar 13 '11 at 0:53
feedback

if i want how many characters like "ABC" are in the file and if I use the lseek(fp,oL,2) as many of you told if the file has many lines the result will not be the number of the characters ,,, for example: "file.txt"
ABC (new line) HGF

the method with the lseek will give 8 as result but the characters are 6.

link|improve this answer
Because the newline is two characters. Also, don't use 2, use SEEK_END, much better style and easier to read. – user439407 Jan 14 at 10:33
feedback

I ended up just making a short and sweet fsize function(note, no error checking)

int fsize(FILE *fp){
    int prev=ftell(fp);
    fseek(fp, 0L, SEEK_END);
    int sz=ftell(fp);
    fseek(fp,prev,SEEK_SET); //go back to where we were
    return sz;
}

It's kind of silly that the standard C library doesn't have such a function, but I can see why it'd be difficult as not every "file" has a size(for instance /dev/null)

link|improve this answer
feedback
#include <stdio.h>

int main(void)
{

   FILE *fp;
   char filename[80];
   long length;

   printf("input file name:");
   gets(filename);
   fp=fopen(filename,"rb");

   if(fp==NULL) {
      printf("file not found!\n");
   }
   else {
      fseek(fp,OL,SEEK_END);
      length=ftell(fp);
      printf("the file's length is %1dB\n",length);
      fclose(fp);
   }

   return 0;
}
link|improve this answer
feedback
#include <stdio.h>

#define MAXNUMBER 1024

int main()
{
    int i;
    char a[MAXNUMBER];

    FILE *fp = popen("du -b  /bin/bash", "r");

    while((a[i++] = getc(fp))!= 9)
    	;

    a[i] ='\0';

    printf(" a is %s\n", a);

    pclose(fp);
    return 0;
}

HTH

link|improve this answer
3  
This solution is just unnecessarily complex and inefficient. There is no need to execute a command and parse its output, as the answers above make clear. – brandizzi Mar 12 '11 at 15:16
Further this is a linux only solution – bobobobo Sep 23 '11 at 16:57
feedback

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