Luna::FileAttributeFlag
enum FileAttributeFlag : u32
{
read_only= 0x01
hidden= 0x02
directory= 0x04
character_special= 0x08
block_special= 0x10
}
Represents file binary attributes.
Options
-
This file is a read-only file. One read-only directory denotes a read-only file system.
-
This file is a hidden file.
-
This file is a directory.
-
This file is an character special file on UNIX/Linux systems.
-
This file is an block special file on UNIX/Linux systems.