1 2 3 4 5 6 7 8 9 10 11 12 13 14
use crate::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 }