文件名称:findup:使用 Go 在当前工作目录或最近的祖先目录中找到匹配的第一个文件,直到 root
文件大小:2KB
文件格式:ZIP
更新时间:2024-07-25 19:23:54
Go
查找程序 一个小包,用于在当前目录或最近的祖先目录中查找匹配的第一个文件,直到根目录,具有额外的支持。 受启发 它适用于 Go >= 1.1。 查看 Travis 安装 go get github.com/h2non/findup 用法 导入包 import "github.com/h2non/findup" 查找文件 path , err := findup . Find ( "findup.go" ) fmt . Println ( path ) // -> /full/path/to/findup.go 使用 Glob 模式查找文件 path , err := findup . Find ( "findup.*" ) fmt . Println ( path ) // -> /full/path/to/findup.go 详细的 API 文档可通过 发展 go test
【文件预览】:
findup-master
----.gitignore(61B)
----findup_test.go(1KB)
----.travis.yml(85B)
----README.md(1KB)
----findup.go(648B)
----.editorconfig(291B)