1use crate::fs::remove_dir_all_impl; 2use std::path::Path; 3use std::{fs, io}; 4 5/// Removes a directory and all of its contents. 6#[inline] 7pub fn remove_dir_all(start: &fs::File, path: &Path) -> io::Result<()> { 8 remove_dir_all_impl(start, path) 9}