XAttrs

AA-like object for accessing a file's extended attributes.

Members

Functions

keys
string[] keys()

Return a list of all extended attribute names.

opBinaryRight
bool opBinaryRight(string key)

Check if an extended attribute is present.

opIndex
void[] opIndex(string key)

Read an extended attribute.

opIndexAssign
void opIndexAssign(const(void)[] value, string key)

Write an extended attribute.

remove
void remove(string key)

Delete an extended attribute.

supported
bool supported()

True if extended attributes are supported on this filesystem.

Meta