DirectoryColorFlag

DirectoryColorFlag

Overview

DirectoryColorFlag is an IntEnum encoding the color bit of a node in the red-black tree that the CFB specification uses to order sibling directory entries. Each DirectoryEntry carries a color_flag field of this type. In normal usage this field is not inspected by application code; it is primarily relevant when inspecting or reconstructing the raw binary structure of a CFB container.

Values

ValueDescription
RED = 0Red node in the directory entry red-black tree.
BLACK = 1Black node in the directory entry red-black tree.

See Also