Function fs_extra::dir::create_all[][src]

pub fn create_all<P>(path: P, erase: bool) -> Result<()> where
    P: AsRef<Path>, 

Recursively create a directory and all of its parent components if they are missing.

This function takes to arguments:

#Errors

This function will return an error in the following situations, but is not limited to just these cases:

#Examples

extern crate fs_extra;
use fs_extra::dir::create_all;

create_all("/some/dir", false); // create directory some and dir