Get Dir
An utility to get directory.
This utility searches for a target directory by checking for any directories or files that match the provided input.
Usage
Get directory by target with the following code:
use ;
new
.targets
.run;
Or get directory by target in reverse with the following code:
use ;
new
.targets
.run_reverse;
Async version also available with async-std/async_std and tokio features:
// This is a `async-std` example
use ;
new
.targets
.run_async
.await;
// This is a `tokio` example
use ;
new
.targets
.run_async
.await;
License
This project is licensed under the terms of the MIT license.