mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
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.
15 lines
No EOL
551 B
C#
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;
|
|
}
|
|
} |