# remove_dir_all **Repository Path**: mirrors_servo/remove_dir_all ## Basic Information - **Project Name**: remove_dir_all - **Description**: Reliable remove_dir_all implementation for Windows - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-02-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # remove_dir_all [![Latest Version](https://img.shields.io/crates/v/remove_dir_all.svg)](https://crates.io/crates/remove_dir_all) [![Docs](https://docs.rs/remove_dir_all/badge.svg)](https://docs.rs/remove_dir_all) [![License](https://img.shields.io/github/license/Aaronepower/remove_dir_all.svg)](https://github.com/Aaronepower/remove_dir_all) ## Description A reliable implementation of `remove_dir_all` for Windows. For Unix systems re-exports `std::fs::remove_dir_all`. ```rust,no_run extern crate remove_dir_all; use remove_dir_all::*; fn main() { remove_dir_all("./temp/").unwrap(); } ```