gecko-dev/third_party/rust/remove_dir_all
Mike Hommey 48d92cec4b Bug 1716518 - Upgrade remove_dir_all to v0.5.3. r=emilio
Differential Revision: https://phabricator.services.mozilla.com/D117844
2021-06-15 22:17:31 +00:00
..
src Bug 1716518 - Upgrade remove_dir_all to v0.5.3. r=emilio 2021-06-15 22:17:31 +00:00
.cargo-checksum.json Bug 1716518 - Upgrade remove_dir_all to v0.5.3. r=emilio 2021-06-15 22:17:31 +00:00
Cargo.toml Bug 1716518 - Upgrade remove_dir_all to v0.5.3. r=emilio 2021-06-15 22:17:31 +00:00
LICENCE-APACHE
LICENCE-MIT
README.md Bug 1716518 - Upgrade remove_dir_all to v0.5.3. r=emilio 2021-06-15 22:17:31 +00:00

README.md

remove_dir_all

Latest Version Docs License

Description

A reliable implementation of remove_dir_all for Windows. For Unix systems re-exports std::fs::remove_dir_all.

extern crate remove_dir_all;

use remove_dir_all::*;

fn main() {
    remove_dir_all("./temp/").unwrap();
}