Golang program to get the user's home directory

Here, we are going to learn how to get the user's home directory in Golang (Go Language)?
Submitted by Nidhi, on April 20, 2021 [Last updated : March 05, 2023]

Getting the user's home directory in Golang

Problem Solution:

In this program, we will use os.UserHomeDir() function to get the path of the user's home directory using os.UserHomeDir() function and print the result on the console screen.

Program/Source Code:

The source code to get the user's home directory is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

Golang code to get the user's home directory

// Golang program to get the user's
// home directory

package main

import "fmt"
import "os"

func main() {
	userHomeDir, err := os.UserHomeDir()

	if err != nil {
		panic(err)
	} else {
		fmt.Println("User home directory: ", userHomeDir)
	}
}

Output:

User home directory:  /home/Nidhi

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the "fmt" package to use the Printf() function and we also imported the "os" package to use the UserHomeDir() function.

In the main() function, we got the user's home directory using os.UserHomeDir() function and printed the result on the console screen.

Golang os Package Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.