Method lrs::file::File::rel_info_no_follow

Returns information about a path relative to this file without following symlinks.

Syntax

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

Arguments

NameDescription
path

A path to the file whose information will be returned.

Return value

Returns information about the file.

Remarks

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

See also