Function lrs::file::remove_attr

Removes an attribute of a file.

Syntax

fn remove_attr<P, S>(path: P, name: S) -> Result<(), Errno>
    where P: ToCString,
          S: ToCString,

Arguments

NameDescription
path

The path of the file whose argument we want to remove.

name

The name of the argument.

Remarks

If the path refers to a symbolic link, the link will be recursively resolved and the attribute of the first non-link target will be removed.

If the path is relative, it will be interpreted relative to the current working directory.

See also