golang membuat folder jika tidak ada

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