Newsgroups : Borland : borland.public.delphi.rtl.win32 : 2007 Mar : Seek TFileStream
| Subject: | Seek TFileStream |
| Posted by: | "Pousse" (apous..@univ-fcomte.fr) |
| Date: | Mon, 19 Mar 2007 12:14:49 |
I am using BDS2006
Seek is documented as using Int64 for Offset parameter.
However, in files bigger than 2Go, the result of this function is
different when using
1 F.Seek(F.Size, SoFromBeginning)
or
2 F.Seek(0, soFromEnd)
where F : TFileStream
Instruction 1 does not work when F.Size > MaxInt (2Go)
Is this problem corrected in any patch ?