findup.rs

Find the first file matching in a current working directory or the nearest ancestor directory up to root

Downloads
2.2K
Stars
2
Committers
1

findup.rs Build Status

A Rust small 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's findup

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().unwrap() == ~"." {
    println!("File path: {}", file.display());
  } else {
    println!("File not found");
  }
}

License

MIT - Tomas Aparicio