commit | b297167526bf8da1f245b04826c10cca9b095a26 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Fri Mar 10 05:17:24 2023 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Fri Mar 10 05:17:24 2023 +0000 |
tree | 61f658d07a599a5af87e17f83189fadf588754c4 | |
parent | 7edc3d20d77b3dfc2ae8ba722645daba881d6821 [diff] | |
parent | fc356c559681ea66f75e86327e2c72458b7bb436 [diff] |
Snap for 9722771 from fc356c559681ea66f75e86327e2c72458b7bb436 to udc-d1-release Change-Id: I2d798ca1d764a1f0572981dc66c1cf1a68b6e733
Reliable and fast directory removal functions.
remove_dir_all
- on non-Windows this is a re-export of std::fs::remove_dir_all
. For Windows an implementation that handles the locking of directories that occurs when deleting directory trees rapidly.
remove_dir_contents
- as for remove_dir_all
but does not delete the supplied root directory.
ensure_empty_dir
- as for remove_dir_contents
but will create the directory if it does not exist.
extern crate remove_dir_all; use remove_dir_all::*; fn main() { remove_dir_all("./temp/").unwrap(); remove_dir_contents("./cache/").unwrap(); }
The minimum rust version for remove_dir_all
is the latest stable release, and the minimum version may be bumped through patch releases. You can pin to a specific version by setting by add =
to your version (e.g. =0.6.0
), or commiting a Cargo.lock
file to your project.