Golang : File path independent of Operating System
There are times a program need to determine the operating system it is running on and construct a proper file path for file I/O.
Go has the http://golang.org/pkg/path/filepath/ package that will handle the cross plat form / operating system
Just use string(filepath.Separator)
through out your code will do.
Below is the an example code in Go:
package main
import (
"fmt"
"runtime"
"path/filepath"
)
func main() {
detect := "This OS is " + runtime.GOOS + " type and use "+ string(filepath.Separator) + " as file separator"
fmt.Println(detect)
}
The output will be
Unix/Linux
:
This OS is linux type and use / as file separator
Windows
:
This OS is windows type and use \ as file separator
See also : Golang : Detect (OS) Operating System
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
+25.5k Golang : Get current file path of a file or executable
+6.9k Golang : Humanize and Titleize functions
+7.7k Golang : Rename part of filename
+8.8k Android Studio : Import third-party library or package into Gradle Scripts
+13k Golang : flag provided but not defined error
+7k Mac/Linux/Windows : Get CPU information from command line
+7.2k Golang : Get Alexa ranking data example
+30.7k Golang : Generate random string
+10.3k Golang : Find and replace data in all files recursively
+6.9k Golang : Calculate pivot points for a cross
+27.6k Golang : Convert CSV data to JSON format and save to file