pub fn canonicalize<P: AsRef<Path>>(path: P) -> Result<PathBuf>
Returns the canonical, absolute form of a path with all intermediate components normalized and symbolic links resolved.
This function currently corresponds to the realpath
function on Unix and the CreateFile
and GetFinalPathNameByHandle
functions on Windows. Note that, this may change in the future.
On Windows, this converts the path to use extended length path syntax, which allows your program to use longer path names, but means you can only join backslash-delimited paths to it, and it may be incompatible with other applications (if passed to the application on the command-line, or written to a file another application may read).
This function will return an error in the following situations, but is not limited to just these cases:
path
does not exist.use std::fs; fn main() -> std::io::Result<()> { let path = fs::canonicalize("../a/../foo.txt")?; Ok(()) }
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/fs/fn.canonicalize.html