https://github.com/dmfed/walker
Custom fs walker aimed at concurrent usage of fs.WalkDir
https://github.com/dmfed/walker
Last synced: about 1 year ago
JSON representation
Custom fs walker aimed at concurrent usage of fs.WalkDir
- Host: GitHub
- URL: https://github.com/dmfed/walker
- Owner: dmfed
- License: mit
- Created: 2022-10-08T17:36:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-10T15:23:16.000Z (over 2 years ago)
- Last Synced: 2025-02-02T15:13:56.773Z (over 1 year ago)
- Language: Go
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Walker
Package **walker** is a wrapper around fs.WalkDir using custom
fs.WalkDirFunc to pass results of recursive directory walk to
caller through a channel.
It makes easier to use the result concurrenly.
The package is quite small and presumably does not need extensive
documentation. Just browse it on https://pkg.go.dev/github.com/dmfed/walker
to see what is has to offer.
Also take a look at the examples in **examples** dir of the repository
for an overview.