[Golang] mkdir -p
import "os"
func Mkdirp(dirpath string) {
os.MkdirAll(dirpath, 0775)
}
Tested on: Ubuntu Linux 15.10, Go 1.6.
References:
[1] | golang mkdir p |
import "os"
func Mkdirp(dirpath string) {
os.MkdirAll(dirpath, 0775)
}
Tested on: Ubuntu Linux 15.10, Go 1.6.
References:
[1] | golang mkdir p |