nn::fs::Directory::Directory Constructor

Syntax

Directory(
     const char * pathName
);

Arguments

Name Description
in pathName The directory path to open (ASCII characters only)

Description

A constructor that opens the specified directory.

This opens the directory at the specified path. This function uses a large amount of buffer space on the stack because it converts the path name from a multi-byte string into a wide string. Pay careful attention to the stack size.

This function does not return processing results and it is therefore impossible to handle errors. In general, use TryInitialize.


CONFIDENTIAL