nn::fs::FileOutputStream::FileOutputStream Constructor

Syntax

FileOutputStream(
     const wchar_t * pathName,
     bool createIfNotExist
);

Arguments

Name Description
in pathName Path of the file to open.
in createIfNotExist Whether a file should be created if it does not exist at the specified path

Description

A constructor that constructs an object and opens the specified file.

Opens the file in the specified path with write-only access, and enables writing. If the createIfNotExist argument has been set to true and no file exists in the specified path, this function creates the file and opens it write-only.

Important

For expanded save data, you must explicitly create a file using the nn::fs::TryCreateFile function before calling this function. Note: Specifying true for createIfNotExist when using expanded save data will cause an error. See Archives for details about expanded save data.

Revision History

2010/06/14
Initial version.

CONFIDENTIAL