vote up 4 vote down star

The code currently does this and the fgetpos does handle files larger than 4GB but the seek returns an error, so any idea how to seek to the end of a file >4GB?

fpos_t currentpos;

sok=fseek(fp,0,SEEK_END);
assert(sok==0,"Seek error!");

fgetpos(fp,&currentpos);
m_filesize=currentpos;
flag

Just out of curiosity, are you sure that fgetpos is working correctly if you haven't gotten to the end of the file? – Brian R. Bondy Sep 22 '08 at 2:48

7 Answers

vote up 3 vote down check

If you're in Windows, you want GetFileSizeEx (MSDN). The return value is a 64bit int.

On linux stat64 (manpage) is correct. fstat if you're working with a FILE*.

link|flag
vote up 1 vote down

(stolen from the glibc manual)

int fgetpos64 (FILE *stream, fpos64_t *position)

This function is similar to fgetpos but the file position is returned in a variable of type fpos64_t to which position points.

If the sources are compiled with _FILE_OFFSET_BITS == 64 on a 32 bits machine this function is available under the name fgetpos and so transparently replaces the old interface.

link|flag
vote up 1 vote down

This code works for me in Linux:

int64_t bigFileSize(const char *path)
{
    struct stat64 S;

    if(-1 == stat64(path, &S))
    {
        printf("Error!\r\n");
        return -1;
    }

    return S.st_size;
}
link|flag
vote up 1 vote down

Stat is always better than fseek to determine file size, it will fail safely on things that aren't a file. 64 bit filesizes is an operating specific thing, on gcc you can put "64" on the end of the commands, or you can force it to make all the standard calls 64 by default. See your compiler manual for details.

link|flag
vote up 0 vote down

Try using fsetpos instead of fseek. This takes a fpos_t instead of a long and is designed to be complementary to fgetpos.

link|flag
fsetpos only takes an absolute position, not a SEEK_END – KPexEA Sep 22 '08 at 2:54
vote up 0 vote down

Try using WMI. This article provides some more details on how this can be done.

link|flag
vote up 0 vote down

On linux, at least, you could use lseek64 instead of fseek.

link|flag

Your Answer

Get an OpenID
or

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