Luna::FileAttributeFlag

enum FileAttributeFlag : u32
{
    read_only= 0x01
    hidden= 0x02
    directory= 0x04
    character_special= 0x08
    block_special= 0x10
}

Represents file binary attributes.

Options

  • read_only

    This file is a read-only file. One read-only directory denotes a read-only file system.

  • hidden

    This file is a hidden file.

  • directory

    This file is a directory.

  • character_special

    This file is an character special file on UNIX/Linux systems.

  • block_special

    This file is an block special file on UNIX/Linux systems.