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.
ntool/nfs/finder
NoahLan 81765d02c4 first commit 1 year ago
..
testdata first commit 1 year ago
README.md first commit 1 year ago
config.go first commit 1 year ago
elem.go first commit 1 year ago
finder.go first commit 1 year ago
finder_test.go first commit 1 year ago
matcher.go first commit 1 year ago
matchers.go first commit 1 year ago
matchers_test.go first commit 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)
}