I am doing binary file processing and in my algorithm I would like to know the actual type of pos_type
and off_type
, for example when computing the size of the file or seeking to a given position (tellg
and seekg
).
When computing the size of the file I just static_cast
the pos_type
to an int64_t
and it seems to work fine.
How about seekg
? Is it safe to pass an int64_t
to it?
Is there a way to make pos_type
and off_type
to be an int64_t
, perhaps using traits
?
I would like to eliminate the hideous cast and find a way that is in accordance with the C++ standard.
Update: see also
Is it safe to assign pos_type to uint64_t when dealing with large files (> 2GB)?
iostream and large file support