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

pub fn split_paths<T: AsRef<OsStr> + ?Sized>(unparsed: &T) -> SplitPaths<'_>
Notable traits for SplitPaths<'a>
impl<'a> Iterator for SplitPaths<'a> type Item = PathBuf;
Expand description

根据平台约定对 PATH 环境变量解析输入。

返回 unparsed 中包含的路径上的迭代器。 迭代器元素类型为 PathBuf

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