Home »
Golang »
Golang Programs
How to get the working directory using syscall in Golang?
Here, we will learn to get the working directory using syscall in Golang.
Submitted by IncludeHelp, on November 13, 2021
In the Go programming language, to get the working directory using syscall – we use the Getwd() function of the syscall package. The Getwd() function returns the working directory.
Syntax:
func Getwd() (wd string, err error)
Consider the below example demonstrating how to get the working directory using syscall in Golang?
package main
import (
"fmt"
"syscall"
)
func main() {
// Using the Getwd(),
// Getting the working directory
wd,_ := syscall.Getwd()
// Printing the working directory
fmt.Println("Working directory:", wd)
}
Output
Working directory: /home
Golang syscall Package Programs »