Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
7answers
1k views

How do you determine the size of a file (in C) for files that are larger than 4GB?

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; ...
2
votes
2answers
327 views

c++ fread changing fgetpos strangely

If I run: FILE* pFile = fopen("c:\\08.bin", "r"); fpos_t pos; char buf[5000]; int ret = fread(&buf, 1, 9, pFile); fgetpos(pFile, &pos); I get ret = 9 and pos = 9. However if I run FILE* ...
0
votes
5answers
63 views

c fgetpos giving wrong position

I am new to C and I have this code: f = fopen( argv[1], "rb" ); fseek( f, 64, SEEK_SET ); fpos_t pos; fgetpos (f, &pos); printf("%x", pos); However, this returns 40, even though it's supposed ...