pub trait PathCreateDir {
    fn create_dir_all(&self) -> Result<(), FixtureError>;
}
Expand description

Create empty directories at ChildPath.

Required Methods§

Create an empty directory at ChildPath.

Examples
use assert_fs::prelude::*;

let temp = assert_fs::TempDir::new().unwrap();
temp.child("subdir").create_dir_all().unwrap();
temp.close().unwrap();

Implementors§