# README
filepath
Package filepath
is an alternative implementation of Go's filepath.Walk() to cater for flat key style sorted walk, this project is mainly used in https://github.com/minio/mc
# Functions
Walk walks the file tree rooted at root, calling walkFn for each file or directory in the tree, including root.
# Variables
ErrSkipDir is used as a return value from WalkFuncs to indicate that the directory named in the call is to be skipped.
ErrSkipFile is used as a return value from WalkFuncs to indicate that the file named in the call is to be skipped.
# Type aliases
WalkFunc is the type of the function called for each file or directory visited by Walk.