Cosmos/source/Cosmos.System/FileSystem/FAT/Listing/FatDirectoryEntryAttributeConsts.cs
MichaelTheShifter 903860a77d FAT File Deletion work.
Yet again, my hands are typing words. Jokes aside, deleting doesn't work
yet - but at least using System.IO.File.Delete() won't cause a plug
issue.
2016-06-21 19:38:44 -04:00

15 lines
No EOL
551 B
C#

namespace Cosmos.System.FileSystem.FAT.Listing
{
public static class FatDirectoryEntryAttributeConsts
{
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;
public const int UnusedOrDeletedEntry = 0xE5;
// LongName was created after and is a combination of other attribs. Its "special".
public const int LongName = 0x0F;
}
}