Keyboard shortcuts

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

Get the temporary directory

  • temp_dir
use std::env;

fn main() {
    let folder = env::temp_dir();
    println!("{:?}", folder);
}