forked from mirror/async-std
Expose fs::create_dir_all
This commit is contained in:
parent
dfd520c778
commit
8451789da5
1 changed files with 2 additions and 0 deletions
|
@ -32,6 +32,7 @@ pub use std::fs::{FileType, Metadata, Permissions};
|
|||
pub use canonicalize::canonicalize;
|
||||
pub use copy::copy;
|
||||
pub use create_dir::create_dir;
|
||||
pub use create_dir_all::create_dir_all;
|
||||
pub use hard_link::hard_link;
|
||||
pub use metadata::metadata;
|
||||
pub use read::read;
|
||||
|
@ -49,6 +50,7 @@ pub use write::write;
|
|||
mod canonicalize;
|
||||
mod copy;
|
||||
mod create_dir;
|
||||
mod create_dir_all;
|
||||
mod dir_builder;
|
||||
mod dir_entry;
|
||||
mod file;
|
||||
|
|
Loading…
Reference in a new issue