Returns whether a path relative to this file points to an existing file.
impl File {
fn rel_exists<P>(&self, path: P) -> Result<bool, Errno>
where P: ToCString,
}| Name | Description |
|---|---|
| path | The path to be inspected. |
If the path is relative, this file must be a directory and the path will be interpreted relative to it. If the file at the path is a symlink, it will be resolved recursively and information about the first non-symlink target will be returned.