https://github.com/santhsecurity/walkkit
Parallel filesystem walker with ignore-aware traversal and bounded work queues
https://github.com/santhsecurity/walkkit
filesystem ignore parallel rust traversal walker
Last synced: 4 days ago
JSON representation
Parallel filesystem walker with ignore-aware traversal and bounded work queues
- Host: GitHub
- URL: https://github.com/santhsecurity/walkkit
- Owner: santhsecurity
- Created: 2026-06-04T15:27:28.000Z (23 days ago)
- Default Branch: main
- Last Pushed: 2026-06-04T15:36:33.000Z (23 days ago)
- Last Synced: 2026-06-04T17:17:19.900Z (23 days ago)
- Topics: filesystem, ignore, parallel, rust, traversal, walker
- Language: Rust
- Homepage: https://santh.dev
- Size: 108 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# walkkit
Parallel file discovery with filtering, sorting, and depth control.
## Quick Start
```rust
use walkkit::Walker;
let files: Vec<_> = Walker::new()
.add_root("./src")
.with_parallelism(4)
.respect_gitignore(true)
.skip_binary(true)
.walk()
.collect();
```
## Features
- Parallel multi-threaded walking
- Glob include/exclude filtering
- Inode sorting for sequential disk access
- .gitignore support (skips .git directories)
- Binary file detection (NUL byte check)
- Depth limiting
- Symlink cycle detection
- Extension and size filters
## License
MIT