mirror of https://github.com/ojizero/gofindup
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
.github/workflows | ||
cmd | 2 years ago | |
.gitignore | ||
LICENSE | ||
README.md | 2 years ago | |
findup.go | 3 years ago | |
findup_test.go | ||
go.mod | 2 years ago | |
go.sum | 2 years ago |
README.md
Go Find Up
Find a file or directory by walking up parent directories.
Usage
Install latest version
go get github.com/ojizero/gofindup
Import it into your code
import "github.com/ojizero/gofindup"
This package only exposes 2 functions, Findup
and FindupFrom
,
// looks the file recursively in parents starting from "./"
gofindup.Findup("some-file-or-directory")
// looks the file recursively in parents starting from "./some-starting-directory"
gofindup.FindupFrom("some-file-or-directory", "some-starting-directory")