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/README.md

384 B

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)
}