GlobWalk

A cross platform crate for recursively walking over paths matching a Glob pattern.

Based on both walkdir &️ globset (❤), this crate inherits many goodies from both, such as

Licensed under MIT.

Documentation

docs.rs/globwalk

Usage

To use this crate, add globwalk as a dependency to your project's Cargo.toml:

toml [dependencies] globwalk = "0.1"

Example

The following piece of code recursively find all mp3 and FLAC files:

```rust extern crate globwalk; use globwalk::GlobWalker;

fn searchanddestroy() { for track in GlobWalker::frompatterns(&["**/*.{mp3,flac}"], ".") { if let Ok(track) = track { // Destroy satanic rhythms std::fs::removefile(track.path()); } } } ```

Example: Tweak walk options

```rust extern crate globwalk; use globwalk::GlobWalker;

fn searchanddestroy() { let walker = GlobWalker::frompatterns(&["**/*.{mp3,flac}"], ".") .maxdepth(4) .followlinks(true) .intoiter() .filter_map(Result::ok);

for track in walker {
    // Destroy symbolic satanic rhythms, but do not stray far.
    std::fs::remove_file(track.path()); 
}

} ```