nn::fs::FileStream::FileStream Constructor

Syntax

FileStream();

Arguments

None.

Description

Constructor.

In the overloaded version without arguments, no file will be opened. Initialize must be called separately to perform file operations.

When opening a file, you can specify the openMode argument value as the bitwise OR of OPEN_MODE_READ (open in loading mode), OPEN_MODE_WRITE (open in writing mode), and/or OPEN_MODE_CREATE (create file if none exists). If you specify OPEN_MODE_CREATE, you must also specify OPEN_MODE_WRITE.


CONFIDENTIAL