appendmode is used with the built-in procedure open to specify that the file variable should be opened for writing, in such a way that all writes are made at the end of the associated file regardless of calls to the built-in procedure seek (i.e. the file should be opened in append mode).
open(file_variable, 'filename', appendmode);
Operating Systems: All
Standard Pascal: No