Function std::env::set_current_dirUnstable [-] [+] [src]

pub fn set_current_dir(p: &Path) -> IoResult<()>

Changes the current working directory to the specified path, returning whether the change was completed successfully or not.

Example

fn main() { use std::env; use std::old_path::Path; let root = Path::new("/"); assert!(env::set_current_dir(&root).is_ok()); println!("Successfully changed working directory to {}!", root.display()); }
use std::env;
use std::old_path::Path;

let root = Path::new("/");
assert!(env::set_current_dir(&root).is_ok());
println!("Successfully changed working directory to {}!", root.display());