Crates.io | get_dir |
lib.rs | get_dir |
version | |
source | src |
created_at | 2024-09-26 15:42:57.269723+00 |
updated_at | 2025-03-12 06:20:14.566388+00 |
description | An utility to get directory |
homepage | https://github.com/alpheustangs/get_dir.rs |
repository | https://github.com/alpheustangs/get_dir.rs |
max_upload_size | |
id | 1387673 |
Cargo.toml error: | TOML parse error at line 24, column 1 | 24 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
An utility to get directory.
This utility searches for a target directory by checking for any directories or files that match the provided input.
Get directory by target with the following code:
use get_dir::{
GetDir,
Target,
DirTarget,
};
GetDir::new()
.targets(vec![
Target::Dir(DirTarget {
name: "src",
}),
])
.run();
Or get directory by target in reverse with the following code:
use get_dir::{
GetDir,
Target,
FileTarget,
};
GetDir::new()
.targets(vec![
Target::File(FileTarget {
name: "LICENSE",
}),
])
.run_reverse();
Async version also available with async-std
/async_std
and tokio
features:
// This is a `async-std` example
use get_dir::{
GetDir,
Target,
DirTarget,
async_std::GetDirAsyncExt,
};
GetDir::new()
.targets(vec![
Target::Dir(DirTarget {
name: "src",
}),
])
.run_async()
.await;
// This is a `tokio` example
use get_dir::{
GetDir,
Target,
DirTarget,
tokio::GetDirAsyncExt,
};
GetDir::new()
.targets(vec![
Target::Dir(DirTarget {
name: "src",
}),
])
.run_async()
.await;
This project is licensed under the terms of the MIT license.