simpath 1.2.0

Search for files on a path defined in an environment variable
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[![Build Status](https://travis-ci.org/andrewdavidmackenzie/simpath.svg?branch=master)](https://travis-ci.org/andrewdavidmackenzie/flow)

# simpath
A rust crate for simple path (like PATH and LD_PATH) use.

Other crates can create a simpath that loads from the path defined as an environment variable using:

```
let path = simppath::new("LD_PATH");
let file = path.find("filename");
```

##Methods
Methods exist to find a file on the path as a PathBuf or as a URL with the "file:" scheme.

The path can be extended with additional directories to search in, but this won't affect the value of the environment 
variable that was loaded initially.