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.
24 lines
384 B
Markdown
24 lines
384 B
Markdown
# finder
|
|
|
|
`finder` provide a finding tool for find files or dirs, and with some built-in matchers.
|
|
|
|
## Usage
|
|
|
|
```go
|
|
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)
|
|
}
|
|
```
|
|
|