vote up 11 vote down star
3

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.

flag

1  
Note that sizeof(char) is 1, by definition. – Randy Proctor Oct 29 at 13:44

7 Answers

vote up 9 vote down check

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|flag
4  
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
vote up 0 vote down

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|flag
vote up -5 vote down
#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|flag
vote up 2 vote down

I've always used this method:

FILE *fd = fopen(...);
long size = filelength(fileno(fd));

if you're using file descriptors or

int f = open(...);
long size = filelength(f);

For low-level IO.

It seems like the simplest way to get a file's size. There's no need to do a couple of seeks.

For what you're doing though, you might want to consider using mmap and just map the file into your memory space.

link|flag
is there an #include for 'filelength' ? ("man filelength" turned up nothing) – JustJeff Jun 11 at 19:04
@JustJeff - I always thought that filelength() was a Posix function found in sys/io.h, but I searched the include directories on both an OSX and a Linux box without finding any prototypes for it. It might be that it's only supported by the Microsoft tools, but MSDN documents it as a Posix function. Strange. – Ferruccio Jun 11 at 21:12
vote up 8 vote down

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|flag
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
Of course it needs error checking - that would just complicate the example. – PiedPiper Oct 26 '08 at 21:28
vote up 5 vote down

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|flag
If you're on Linux and want to have a dependency on glib, that is. – JesperE Oct 26 '08 at 22:25
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
vote up 29 vote down

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|flag
needs error checking – ysth Oct 26 '08 at 21:21
Please note that I have omitted error checking in the interest of clarity. – Greg Hewgill Oct 26 '08 at 21:23
1  
You don't need the filename - you can use fstat for that. – Tanktalus Oct 26 '08 at 21:24
You need to point stat the address of the struct. The second line should be: stat(filename, &st); – Goose Bumper Nov 3 at 21:16
@aditya: Thanks for that, fixed. – Greg Hewgill Nov 3 at 22:27

Your Answer

Get an OpenID
or

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