Current working directory
-
cwd
-
pwd
-
current_dir
use std::env::current_dir;
fn main() {
let folder = current_dir().unwrap();
println!("{:?}", folder);
println!("{}", folder.display());
}
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
cwd
pwd
current_dir
use std::env::current_dir;
fn main() {
let folder = current_dir().unwrap();
println!("{:?}", folder);
println!("{}", folder.display());
}