Contents

append

Indicates that each write operation appends to the file.

Declaration

static var append: FileDescriptor.OpenOptions { get }

Mentioned in

Discussion

If this option is specified, each time you write to the file, the new data is written at the end of the file, after all existing file data.

The corresponding C constant is O_APPEND.

See Also

Specifying Options