You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
NoahLan 81765d02c4 | 1 year ago | |
---|---|---|
.. | ||
testdata | 1 year ago | |
README.md | 1 year ago | |
config.go | 1 year ago | |
elem.go | 1 year ago | |
finder.go | 1 year ago | |
finder_test.go | 1 year ago | |
matcher.go | 1 year ago | |
matchers.go | 1 year ago | |
matchers_test.go | 1 year ago |
README.md
finder
finder
provide a finding tool for find files or dirs, and with some built-in matchers.
Usage
package main
import (
"git.noahlan.cn/noahlan/ntool/nfs/finder"
)
func main() {
ff := finder.NewFinder()
ff.AddScan("/tmp", "/usr/local", "/usr/local/share")
ff.ExcludeDir("abc", "def").ExcludeFile("*.log", "*.tmp")
//ss := ff.FindPaths()
//dump.P(ss)
}