Sha256: 93c64b72abdca17877d6ab61d50a43765d6aef9e0a9f7aaf41b6b0b7d9a8a380

Contents?: true

Size: 1.7 KB

Versions: 19

Compression:

Stored size: 1.7 KB

Contents

use crate::fs::asyncify;

use std::io;
use std::path::{Path, PathBuf};

/// Returns the canonical, absolute form of a path with all intermediate
/// components normalized and symbolic links resolved.
///
/// This is an async version of [`std::fs::canonicalize`][std]
///
/// [std]: std::fs::canonicalize
///
/// # Platform-specific behavior
///
/// 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][changes].
///
/// On Windows, this converts the path to use [extended length path][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).
///
/// [changes]: https://doc.rust-lang.org/std/io/index.html#platform-specific-behavior
/// [path]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx#maxpath
///
/// # Errors
///
/// This function will return an error in the following situations, but is not
/// limited to just these cases:
///
/// * `path` does not exist.
/// * A non-final component in path is not a directory.
///
/// # Examples
///
/// ```no_run
/// use tokio::fs;
/// use std::io;
///
/// #[tokio::main]
/// async fn main() -> io::Result<()> {
///     let path = fs::canonicalize("../a/../foo.txt").await?;
///     Ok(())
/// }
/// ```
pub async fn canonicalize(path: impl AsRef<Path>) -> io::Result<PathBuf> {
    let path = path.as_ref().to_owned();
    asyncify(move || std::fs::canonicalize(path)).await
}

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
wasmtime-14.0.4 ./ext/cargo-vendor/tokio-1.33.0/src/fs/canonicalize.rs
wasmtime-14.0.3 ./ext/cargo-vendor/tokio-1.33.0/src/fs/canonicalize.rs
wasmtime-14.0.1 ./ext/cargo-vendor/tokio-1.33.0/src/fs/canonicalize.rs
wasmtime-14.0.0 ./ext/cargo-vendor/tokio-1.33.0/src/fs/canonicalize.rs
wasmtime-13.0.0 ./ext/cargo-vendor/tokio-1.32.0/src/fs/canonicalize.rs
wasmtime-12.0.1 ./ext/cargo-vendor/tokio-1.32.0/src/fs/canonicalize.rs
wasmtime-12.0.0 ./ext/cargo-vendor/tokio-1.32.0/src/fs/canonicalize.rs
wasmtime-11.0.0 ./ext/cargo-vendor/tokio-1.32.0/src/fs/canonicalize.rs
wasmtime-10.0.1 ./ext/cargo-vendor/tokio-1.30.0/src/fs/canonicalize.rs
wasmtime-10.0.0 ./ext/cargo-vendor/tokio-1.30.0/src/fs/canonicalize.rs
wasmtime-9.0.4 ./ext/cargo-vendor/tokio-1.30.0/src/fs/canonicalize.rs
wasmtime-9.0.1 ./ext/cargo-vendor/tokio-1.28.1/src/fs/canonicalize.rs
wasmtime-8.0.0 ./ext/cargo-vendor/tokio-1.27.0/src/fs/canonicalize.rs
wasmtime-7.0.0 ./ext/cargo-vendor/tokio-1.27.0/src/fs/canonicalize.rs
wasmtime-6.0.1 ./ext/cargo-vendor/tokio-1.25.0/src/fs/canonicalize.rs
wasmtime-6.0.0 ./ext/cargo-vendor/tokio-1.25.0/src/fs/canonicalize.rs
wasmtime-5.0.0 ./ext/cargo-vendor/tokio-1.24.2/src/fs/canonicalize.rs
wasmtime-0.4.1 ./ext/cargo-vendor/tokio-1.23.0/src/fs/canonicalize.rs
wasmtime-0.4.0 ./ext/cargo-vendor/tokio-1.23.0/src/fs/canonicalize.rs