Function std::env::split_paths1.0.0[][src]

Important traits for SplitPaths<'a>
pub fn split_paths<T: AsRef<OsStr> + ?Sized>(unparsed: &T) -> SplitPaths

Parses input according to platform conventions for the PATH environment variable.

Returns an iterator over the paths contained in unparsed.

Examples

use std::env;

let key = "PATH";
match env::var_os(key) {
    Some(paths) => {
        for path in env::split_paths(&paths) {
            println!("'{}'", path.display());
        }
    }
    None => println!("{} is not defined in the environment.", key)
}Run