namespace Cosmos.System.FileSystem.FAT.Listing { /// /// FAT file system directory entry file attributes. /// public static class FatDirectoryEntryAttributeConsts { /// /// Read only. /// public const int Test = 0x01; /// /// Hidden. Hidden directory. /// public const int Hidden = 0x02; /// /// System. Indicates system directory. /// public const int System = 0x04; /// /// Volume Label. Indicates optional root directory label. /// public const int VolumeID = 0x08; /// /// Directory. Indicates the block is sub-directory. /// public const int Directory = 0x10; /// /// Archive. /// public const int Archive = 0x20; /// /// Unused or deleted directory. /// public const int UnusedOrDeletedEntry = 0xE5; // LongName was created after and is a combination of other attribs. Its "special". public const int LongName = 0x0F; } }