“Golang Get Working Directory” Kod odpowiedzi

Golang Get Working Directory

path, err := os.Getwd()
if err != nil {
    log.Println(err)
}
fmt.Println(path)  // for example /home/user
Repulsive Rattlesnake

Golang Get Working Directory

path, err := os.Executable()
if err != nil {
    log.Println(err)
}
fmt.Println(path) // for example /tmp/go-build872132473/b001/exe/main
Repulsive Rattlesnake

Odpowiedzi podobne do “Golang Get Working Directory”

Pytania podobne do “Golang Get Working Directory”

Więcej pokrewnych odpowiedzi na “Golang Get Working Directory” w Go

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu