Module std::pathUnstable [-] [+] [src]

Cross-platform path manipulation.

This module provides two types, PathBuf and Path (akin to String and str), for working with paths abstractly. These types are thin wrappers around OsString and OsStr respectively, meaning that they work directly on strings according to the local platform's path syntax.

Simple usage

Path manipulation involves both parsing components from slices and building new owned paths.

To parse a path, you can create a Path slice from a str slice and start asking questions:

fn main() { use std::path::Path; let path = Path::new("/tmp/foo/bar.txt"); let file = path.file_name(); let extension = path.extension(); let parent_dir = path.parent(); }
use std::path::Path;

let path = Path::new("/tmp/foo/bar.txt");
let file = path.file_name();
let extension = path.extension();
let parent_dir = path.parent();

To build or modify paths, use PathBuf:

fn main() { use std::path::PathBuf; let mut path = PathBuf::new("c:\\"); path.push("windows"); path.push("system32"); path.set_extension("dll"); }
use std::path::PathBuf;

let mut path = PathBuf::new("c:\\");
path.push("windows");
path.push("system32");
path.set_extension("dll");

Path components and normalization

The path APIs are built around the notion of "components", which roughly correspond to the substrings between path separators (/ and, on Windows, \). The APIs for path parsing are largely specified in terms of the path's components, so it's important to clearly understand how those are determined.

A path can always be reconstructed into an equivalent path by putting together its components via push. Syntactically, the paths may differ by the normalization described below.

Component types

Components come in several types:

On Windows, two additional component types come into play:

Normalization

Aside from splitting on the separator(s), there is a small amount of "normalization":

No other normalization takes place by default. In particular, a/./b/ and a/b are treated distinctly in terms of components, as are a/c and a/b/../c. Further normalization is possible to build on top of the components APIs, and will be included in this library very soon.

Structs

Components

The core iterator giving the components of a path.

Display

Helper struct for safely printing paths with format!() and {}

Iter

An iterator over the components of a path, as OsStr slices.

Path

A slice of a path (akin to str).

PathBuf

An owned, mutable path (akin to String).

Enums

Component

A single component of a path.

Prefix

Path prefixes (Windows only).

Constants

MAIN_SEPARATOR

The primary sperator for the current platform

Traits

AsPath

Freely convertible to a Path.

Functions

is_separator

Determine whether the character is one of the permitted path separators for the current platform.