OpenBinaryReader(FileName: String): IBinaryReader;
FileName — a path and name of the file that should be opened.
The OpenBinaryReader method opens a file for reading in a binary format.
Sub Main;
Var
BinR: IBinaryReader;
d: DateTime;
Begin
If File.Exists("c:\New_folder\1.txt") Then
BinR:=File.OpenBinaryReader("c:\New_folder\1.txt");
d:=BinR.ReadDateTime;
End If;
End Sub Main;
After executing this example, date and time are obtained into a variable "d" from a file 1.txt.
See also: