Constant lrs::file::flags::FILE_WRITE_ONLY

Open the file in write-only mode.

Syntax

const FILE_WRITE_ONLY: FileFlags = FileFlags(O_WRONLY);

Remarks

This flag cannot be combined with FILE_READ_ONLY to open a file for reading and writing. Use FILE_READ_WRITE instead.

See also