Tagged Questions

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; ...
3
votes
3answers
376 views

fseek now supports large files

It appears that fseek now, at least in my implementation, supports large files naturally without fseek64, lseek or some strange compiler macro. When did this happen? #include <cstdio> #include ...
2
votes
4answers
328 views

Problem with fseek

Here is my code. if(fseek(file,position,SEEK_SET)!=0) { throw std::runtime_error("can't seek to specified position"); } I used to assume that even if position is greater than num of characters in ...
0
votes
5answers
74 views

Will fseek function flush data in the buffer in C++?

We know that call to functions like fprintf or fwrite will not write data to the disk immediately, instead, the data will be buffered until a threshold is reached. My question is, if I call the fseek ...
0
votes
3answers
448 views

What's the intended use of _fread_nolock, _fseek_nolock?

we have a C++ class which basically reads and writes vectors from a binary file. An exemplary read function that loads a single vector into memory looks like this: int load (const __int64 index, T* ...