find_folder Build Status

A simple tool for finding the absolute path to a folder with a given name.

It looks like this:

```Rust extern crate find_folder;

use find_folder::Search;

fn main() { println!("{:?}", Search::Parents(3).forfolder("src")); println!("{:?}", Search::Kids(3).forfolder("examples")); println!("{:?}", Search::Both(3, 3).for_folder("target")); } ```

You can add it to your project by adding this to your Cargo.toml:

toml [dependencies] find_folder = "*"