mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
18 lines
559 B
C#
18 lines
559 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SentinelKernel.System.FileSystem.FAT
|
|
{
|
|
public static class DirectoryEntryAttributeConsts
|
|
{
|
|
public const int Test = 0x01;
|
|
public const int Hidden = 0x02;
|
|
public const int System = 0x04;
|
|
public const int VolumeID = 0x08;
|
|
public const int Directory = 0x10;
|
|
public const int Archive = 0x20;
|
|
// LongName was created after and is a combination of other attribs. Its "special".
|
|
public const int LongName = 0x0F;
|
|
}
|
|
}
|