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 bool Indicates a directory when true or a file when false.
isHidden bool Indicates a hidden attribute when true.
isArchive bool Indicates an archive when true.
isReadOnly bool Indicates read-only permissions when true.

Revision History

2010/12/09
Initial version.

CONFIDENTIAL