Method lrs::file::File::rel_create_dir

Creates a directory relative to this file.

Syntax

impl File {
    fn rel_create_dir<P>(&self, path: P, mode: Mode) -> Result<(), Errno>
        where P: ToCString,
}

Arguments

NameDescription
path

The path of the directory.

mode

The mode of the directory.

Remarks

If the path is relative, this file must be a directory and the path will be interpreted relative to it.

See also