Create directory in Go
In this short tutorial, we will learn how to create directory in platform independent manner. I.e we don't worry about the \
and /
part for *nix and Windows machines.
mkdir.go
package main
import (
//"fmt"
"os"
"path/filepath"
)
func main() {
// create a TestDir directory on current working directory
os.Mkdir("." + string(filepath.Separator) + "TestDir",0777)
}
The 0777
permission can be to liberal for some cases and you might want to change it for your production code.
References :
See also : Golang : File path independent of 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
+7.4k Golang : How to detect if a sentence ends with a punctuation?
+17.9k Golang : Login and logout a user after password verification and redirect example
+47.7k Golang : Convert int to byte array([]byte)
+13.6k Android Studio : Password input and reveal password example
+10.1k Golang : Get login name from environment and prompt for password
+6.1k Golang : Grab news article text and use NLP to get each paragraph's sentences
+14.5k Golang : How to check if your program is running in a terminal
+11.6k Get form post value in Go
+7.7k Golang : Test if an input is an Armstrong number example
+10.6k Golang : Flip coin example
+5.8k Golang : List all packages and search for certain package