enum

LMDB::FileMode

Inherits Enum / Comparable / Value / Object

Unix file access privilegies.

Constants

OwnerRead = 256
OwnerWrite = 128
OwnerExec = 64
GroupRead = 32
GroupWrite = 16
GroupExec = 8
OtherRead = 4
OtherWrite = 2
OtherExec = 1
Default = 438

Read/Write access for everyone

OwnerAll = 448
GroupAll = 56
OtherAll = 7
None = 0
All = 511

Instance methods

default?

Returns true if this enum value contains Default

Source
group_all?

Returns true if this enum value contains GroupAll

Source
group_exec?

Returns true if this enum value contains GroupExec

Source
group_read?

Returns true if this enum value contains GroupRead

Source
group_write?

Returns true if this enum value contains GroupWrite

Source
none?
Source
other_all?

Returns true if this enum value contains OtherAll

Source
other_exec?

Returns true if this enum value contains OtherExec

Source
other_read?

Returns true if this enum value contains OtherRead

Source
other_write?

Returns true if this enum value contains OtherWrite

Source
owner_all?

Returns true if this enum value contains OwnerAll

Source
owner_exec?

Returns true if this enum value contains OwnerExec

Source
owner_read?

Returns true if this enum value contains OwnerRead

Source
owner_write?

Returns true if this enum value contains OwnerWrite

Source