MCPcopy Create free account
hub / github.com/auth0/auth0-cli / dirExists

Function dirExists

internal/cli/quickstart_detect.go:386–389  ·  view source on GitHub ↗
(dir, name string)

Source from the content-addressed store, hash-verified

384}
385
386func dirExists(dir, name string) bool {
387 info, err := os.Stat(filepath.Join(dir, name))
388 return err == nil && info.IsDir()
389}
390
391func fileExists(dir, name string) bool {
392 _, err := os.Stat(filepath.Join(dir, name))

Callers 1

DetectProjectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected