• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

src/H03-May-2022-306194

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D12-Jun-202074 65

Cargo.tomlH A D12-Jun-20201.1 KiB2927

Cargo.toml.orig-cargoH A D12-Jun-2020690 2421

LICENCE-APACHEH A D25-Apr-201710.2 KiB192160

LICENCE-MITH A D25-Apr-20171.1 KiB2722

README.mdH A D12-Jun-2020622 2114

README.md

1# remove_dir_all
2
3[![Latest Version](https://img.shields.io/crates/v/remove_dir_all.svg)](https://crates.io/crates/remove_dir_all)
4[![Docs](https://docs.rs/remove_dir_all/badge.svg)](https://docs.rs/remove_dir_all)
5[![License](https://img.shields.io/github/license/XAMPPRocky/remove_dir_all.svg)](https://github.com/XAMPPRocky/remove_dir_all)
6
7## Description
8
9A reliable implementation of `remove_dir_all` for Windows. For Unix systems
10re-exports `std::fs::remove_dir_all`.
11
12```rust,no_run
13extern crate remove_dir_all;
14
15use remove_dir_all::*;
16
17fn main() {
18    remove_dir_all("./temp/").unwrap();
19}
20```
21