summaryrefslogtreecommitdiffstats
path: root/tokio/src/fs/remove_dir_all.rs
blob: 50fe719b00b6928aa46cbf81db1c95b7747cc921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::fs::asyncify;

use std::io;
use std::path::Path;

/// Removes a directory at this path, after removing all its contents. Use carefully!
///
/// This is an async version of [`std::fs::remove_dir_all`][std]
///
/// [std]: https://doc.rust-lang.org/std/fs/fn.remove_dir_all.html
pub async fn remove_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
    let path = path.as_ref().to_owned();
    asyncify(move || std::fs::remove_dir_all(path)).await
}