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
+8.6k Golang : HTTP Routing with Goji example
+4.4k Javascript : Access JSON data example
+5.3k Golang : Stop goroutine without channel
+14.2k Golang : GUI with Qt and OpenCV to capture image from camera
+7.1k Golang : How to convert strange string to JSON with json.MarshalIndent
+8.5k Golang : Heap sort example
+15.8k Golang : Get sub string example
+18.1k Golang : Aligning strings to right, left and center with fill example
+13.4k Golang : How to determine if a year is leap year?
+9k Golang : Generate EAN barcode
+11.2k Swift : Convert (cast) Float to String
+4.4k Adding Skype actions such as call and chat into web page examples