WriteString(Value: String);
Value — character string that must be written.
The WriteString method writes a character string into a binary file.
Executing the example requires that the 1.dat binary file to be present in the root of the disc C.
Sub Main;
Var
File1: IFileInfo;
BinW: IBinaryWriter;
Begin
File1:=New FileInfo.Attach("c:\1.dat");
If File1.Exists Then
BinW:=File1.OpenBinaryWriter(True);
BinW.WriteString("New Line");
End If;
Dispose File1;
End Sub Main;
After executing the example the New Line string is written to the 1.dat binary file.
See also: