SkillAgentSearch skills...

Jwalk

Filesystem walk performed in parallel with streamed and sorted results

Install / Use

/learn @Byron/Jwalk
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

jwalk

Filesystem walk.

  • Performed in parallel using Rayon
  • Entries streamed in sorted order
  • Custom sort/filter/skip/state

Build Status Latest Version

Usage

Add this to your Cargo.toml:

[dependencies]
jwalk = "0.6"

Lean More: docs.rs/jwalk

Example

Recursively iterate over the "foo" directory sorting by name:

use jwalk::{WalkDir};

for entry in WalkDir::new("foo").sort(true) {
  println!("{}", entry?.path().display());
}

Inspiration

This crate is inspired by both walkdir and ignore. It attempts to combine the parallelism of ignore with walkdir's streaming iterator API. Some code and comments are copied directly from walkdir.

Why use this crate?

This crate is particularly good when you want streamed sorted results. In my tests it's about 4x walkdir speed for sorted results with metadata. Also this crate's process_read_dir callback allows you to arbitrarily sort/filter/skip/state entries before they are yielded.

Why not use this crate?

Directory traversal is already pretty fast. If you don't need this crate's speed then walkdir provides a smaller and more tested single threaded implementation.

This crate's parallelism happens at the directory level. It will help when walking deep file systems with many directories. It wont help when reading a single directory with many files.

Benchmarks

Benchmarks comparing this crate with walkdir and ignore.

View on GitHub
GitHub Stars271
CategoryDevelopment
Updated2d ago
Forks25

Languages

Rust

Security Score

95/100

Audited on Apr 6, 2026

No findings