Force delete a file or folder held by other Windows processes, even if it is being used by other processes.
This can be used in race condition situations where a process has opened a folder and it tries to delete it just before closing the original handle.
This function will close all the handles of all the processes that have opened the requested file or directory, thus it may cause unexpected behavior on other programs or could leave your file system on an inconsistent state. USE THIS UNDER YOUR OWN RISK.
In order to use force-delete-win
in your Rust library/program, you need to add
it as a dependency in your Cargo.toml:
```toml [dependencies] force-delete-win = 0.1
```
For using this package please do,
```rust use std::ffi::OsString; use forcedeletewin::forcedeletefile_folder;
fn myfunc() -> Result
To run our tests, just open a terminal and run,
bash
cargo test
Visit our CHANGELOG file to learn more about our new features and improvements.
We use cargo clippy
to lint this project and cargo test
to test the Rust components.
Feel free to send a PR or create an issue if you have any problem/question.