RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
System.Append Function

Prepares an existing file for adding text to the end.

Pascal
procedure Append(var F: Text);
C++
Append(Text F);

System

Call Append to ensure that a file is opened with write-only access with the file pointer positioned at the end of the file. F is a text file variable and must be associated with an external file using AssignFile. If no external file of the given name exists, an error occurs. If F is already open, it is closed, then reopened. The current file position is set to the end of the file.

Note: If a Ctrl+Z (ASCII 26) is present in the last 128-byte block of the file, the current file position is set so that the next character added to the file overwrites the first Ctrl+Z in the block. In this way, text can be appended to a file that terminates with a Ctrl+Z.
If F was not assigned a name, then, after the call to Append, F refers to the standard output file. 

 

AssignFile 

FileClose 

Reset 

Rewrite 

IDH

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!