Skip to content

Instantly share code, notes, and snippets.

@arxdsilva
Last active February 12, 2024 13:30
Show Gist options
  • Star 53 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save arxdsilva/4f73d6b89c9eac93d4ac887521121120 to your computer and use it in GitHub Desktop.
Save arxdsilva/4f73d6b89c9eac93d4ac887521121120 to your computer and use it in GitHub Desktop.
How to get the current working directory in golang
package main
// More info on Getwd()
// https://golang.org/src/os/getwd.go
//
import(
"os"
"fmt"
"log"
)
func main() {
dir, err := os.Getwd()
if err != nil {
log.Fatal(err)
}
fmt.Println(dir)
}
@m-a-rahal-os
Copy link

THANK YOU !
I've wasted so much time trying to figure out how to find directory of the project (to locate config file correctly), this should be the first answer on stack overflow or something ... thanks again for sharing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment