# Functions
IsDir return true if path exist and is directory.
IsExist return true if path exist
https://gist.github.com/mattes/d13e273314c3b3ade33f if _, err := os.Stat("/path/to/whatever"); err == nil { // path/to/whatever exists }.
IsNotExist return true if path not exist
https://gist.github.com/mattes/d13e273314c3b3ade33f if _, err := os.Stat("/path/to/whatever"); os.IsNotExist(err) { // path/to/whatever does not exist }.
No description provided by the author
SearchProjectRoot return project root dir if possible, searchFromDir will set to current working directory if empty.
# Interfaces
No description provided by the author