2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00

Merge pull request #111 from dfrankland/expose-fs-create_dir_all

Expose fs::create_dir_all
This commit is contained in:
Florian Gilcher 2019-08-26 13:38:00 -07:00 committed by GitHub
commit a14b11c032
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View file

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
## [Unreleased]
- Expose `fs::create_dir_all`
# [0.99.4] - 2019-08-21
## Changes

View file

@ -1,8 +1,8 @@
use std::fs;
use std::path::{Path, PathBuf};
use std::path::Path;
use crate::task::blocking;
use crate::io;
use crate::task::blocking;
/// Creates a new, empty directory and all of its parents if they are missing.
///

View file

@ -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;