Struct shell_rs::mkdir::Options [−][src]
pub struct Options {
pub parents: bool,
pub mode: mode_t,
pub exist_ok: bool,
pub expand_env: bool,
}Fields
parents: boolNo error if existing, make parent directories as needed.
Just like mkdir -p command.
mode: mode_tSet file mode (as in chmod), not a=rwx - umask.
exist_ok: boolNo error if existing.
expand_env: bool