nn::fs::OpenMode Enumerated Type

Syntax

enum OpenMode;

Value

Value Description
OPEN_MODE_READ Open in read mode.
OPEN_MODE_WRITE Open in write mode.
OPEN_MODE_CREATE Create a file if it doesn't exist. You must specify OPEN_MODE_WRITE at the same time.

Description

An enumeration of constants that specify file open modes.

A file open mode is specified by a bitwise OR of these values.

Revision History

2010/11/09
Initial version.

CONFIDENTIAL