18 Aug
2004
18 Aug
'04
3:57 p.m.
"Victor A. Wagner Jr."
At Tuesday 2004-08-17 15:14, you wrote:
"Delfin Rojas"
wrote in message
As far as file size I think you can get it from the stream.
Yes, but std::streamoff is not guaranteed to be large enough to hold the size of really huge files.
really? how'd the committee manage to mess that one up? or are you saying some implementations are deficient in their specification of std::streamoff?
It's typical for streamoff to be an alias for a 32-bit long. Currently there's no type the committee could have specified which would cover the full range of file sizes commonly supported by OS's. Jonathan