std::env::current_dir

Function std::env::current_dir

pub fn current_dir() -> Result<PathBuf>

Returns the current working directory as a PathBuf.

Errors

Returns an Err if the current working directory value is invalid. Possible cases:

  • Current directory does not exist.
  • There are insufficient permissions to access the current directory.

Examples

use std::env;

// We assume that we are in a valid directory.
let p = env::current_dir().unwrap();
println!("The current directory is {}", p.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.current_dir.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部