std::env::set_current_dir

Function std::env::set_current_dir

pub fn set_current_dir<P: AsRef<Path>>(p: P) -> Result<()>

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

Examples

use std::env;
use std::path::Path;

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

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/env/fn.set_current_dir.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部