1 unstable release
Uses old Rust 2015
0.1.0 | Jan 10, 2015 |
---|
#16 in #discover
3KB
findup.rs
A Rust tiny crate to find the first file matching in the current directory or the nearest ancestor directory up to root with Glob patterns support. Inspired in node's findup and Go findup
Note: this is still a hacking-driven just-for-fun alpha package as result of a couple of hours learning and playing with Rust
Usage
To use findup
, add this to your Cargo.toml
manifest
[dependencies]
findup = "0.1.0"
And add this to your crate root:
extern crate findup;
Example
extern crate findup;
use std::path;
use findup::findup;
fn main() {
let file: Path = findup("my-file.*");
assert_eq!(file.exists(), true);
if file.as_str() == Some(".") {
println!("File path: {}", file.display());
} else {
println!("File not found");
}
}
License
MIT - Tomas Aparicio
Dependencies
~48KB