mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-10 02:02:30 +00:00
27 lines
935 B
C#
27 lines
935 B
C#
namespace Cosmos.System.FileSystem.FAT.Listing
|
|
{
|
|
/// <summary>
|
|
/// FAT file system directory entry file attributes.
|
|
/// </summary>
|
|
public static class FatDirectoryEntryAttributeConsts
|
|
{
|
|
public const int Test = 0x01;
|
|
/// <summary>
|
|
/// Hidden. Hides directories.
|
|
/// </summary>
|
|
public const int Hidden = 0x02;
|
|
/// <summary>
|
|
/// System. Indicates system directory.
|
|
/// </summary>
|
|
public const int System = 0x04;
|
|
/// <summary>
|
|
/// Volume Label. Indicates optional root directory label.
|
|
/// </summary>
|
|
public const int VolumeID = 0x08;
|
|
public const int Directory = 0x10;
|
|
public const int Archive = 0x20;
|
|
public const int UnusedOrDeletedEntry = 0xE5;
|
|
// LongName was created after and is a combination of other attribs. Its "special".
|
|
public const int LongName = 0x0F;
|
|
}
|
|
}
|