Retrieves information about a file without following symbolic links.
fn info_no_follow<P>(path: P) -> Result<Info, Errno>
where P: ToCString,| Name | Description |
|---|---|
| path | The path of the file whose information is to be retrieved. |
The file information.
This function does not follow symbolic links and always returns information about the file specified by the path.
If the path is relative, it will be interpreted relative to the current working directory.