Golang Créer un dossier s'il n'existe pas

if _, err := os.Stat(path); os.IsNotExist(err) {
    os.Mkdir(path, mode)
}
Curious Centipede