nn::fs::Attributes Structure

Syntax

struct Attributes
{
   bool isDirectory;
   bool isHidden;
   bool isArchive;
   bool isReadOnly;
};

Description

Structure that gives attribute information for directory entries.

All member variables except for isDirectory are only valid on SDMC archives. Note that these values are undefined for all other archives.

Member Variables

isDirectory Indicates a directory when true or a file when false.
isHidden Indicates a hidden attribute when true.
isArchive Indicates an archive when true.
isReadOnly Indicates read-only permissions when true.

Revision History

2010/12/09
Initial version.

CONFIDENTIAL