glob 0.1.4

Support for matching file paths against Unix shell style patterns.
docs.rs failed to build glob-0.1.4
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: glob-0.3.0

Support for matching file paths against Unix shell style patterns.

The glob and glob_with functions, in concert with the Paths type, allow querying the filesystem for all files that match a particular pattern - just like the libc glob function (for an example see the glob documentation). The methods on the Pattern type provide functionality for checking if individual paths match a particular pattern - in a similar manner to the libc fnmatch function For consistency across platforms, and for Windows support, this module is implemented entirely in Rust rather than deferring to the libc glob/fnmatch functions.