Struct std::fs::DirBuilder
[−]
[src]
pub struct DirBuilder { // some fields omitted }
: recently added API
A builder used to create directories in various manners.
This builder also supports platform-specific options.
Methods
impl DirBuilder
fn new() -> DirBuilder
: recently added API
Creates a new set of options with default mode/security settings for all platforms and also non-recursive.
fn recursive(&mut self, recursive: bool) -> &mut Self
: recently added API
Indicate that directories create should be created recursively, creating all parent directories if they do not exist with the same security and permissions settings.
This option defaults to false
fn create<P: AsRef<Path>>(&self, path: P) -> Result<()>
: recently added API
Create the specified directory with the options configured in this builder.