Golang : get the current working directory of a running program
Problem :
You are looking for way to get the folder/directory of the running program.
Solution :
Use https://bitbucket.org/kardianos/osext ExecutableFolder()
function. For example :
package main
import (
"bitbucket.org/kardianos/osext"
"fmt"
)
func main() {
// get the current folder of the running program
path, err := osext.ExecutableFolder()
if err != nil {
fmt.Println(err)
}
fmt.Println("Program is executing at folder :", path)
}
Sample output :
go run executabledir.go
Program is executing at folder : /tmp/go-build113823238/command-line-arguments/_obj/exe/
See also : Golang : Get current file path of a file or executable
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+15.7k Golang : rune literal not terminated error
+46.6k Golang : Encode image to base64 example
+16.7k Golang : Delete files by extension
+9.3k Golang : How to control fmt or log print format?
+7.5k Golang : Check to see if *File is a file or directory
+4.7k JavaScript : Rounding number to decimal formats to display currency
+10.3k Golang : Bcrypting password
+36.1k Golang : Integer is between a range
+28.3k Golang : Connect to database (MySQL/MariaDB) server
+5.1k Golang : Display packages names during compilation
+6.3k Golang : Calculate US Dollar Index (DXY)
+13.6k Golang : Query string with space symbol %20 in between