Sha256: b85abd05c7ab64ee8dc6cf5663a11e713aa51b357759ef660ef3cae3365ccc42
Contents?: true
Size: 431 Bytes
Versions: 38
Compression:
Stored size: 431 Bytes
Contents
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]: fn@std::fs::remove_dir_all pub async fn remove_dir_all(path: impl AsRef<Path>) -> io::Result<()> { let path = path.as_ref().to_owned(); asyncify(move || std::fs::remove_dir_all(path)).await }
Version data entries
38 entries across 38 versions & 1 rubygems