Skip to content

Instantly share code, notes, and snippets.

@178inaba
Created August 7, 2015 17:24
Show Gist options
  • Select an option

  • Save 178inaba/f31fab17ea6fb0b5d996 to your computer and use it in GitHub Desktop.

Select an option

Save 178inaba/f31fab17ea6fb0b5d996 to your computer and use it in GitHub Desktop.
make directory from go
package main
import (
"fmt"
"os"
)
func main() {
fmt.Println(os.Mkdir("config", os.ModePerm))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment