forked from TrueCloudLab/neoneo-go
18 lines
354 B
Go
18 lines
354 B
Go
package io
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path"
|
|
)
|
|
|
|
// MakeDirForFile creates directory provided in filePath.
|
|
func MakeDirForFile(filePath string, creator string) error {
|
|
fileName := filePath
|
|
dir := path.Dir(fileName)
|
|
err := os.MkdirAll(dir, os.ModePerm)
|
|
if err != nil {
|
|
return fmt.Errorf("could not create dir for %s: %v", creator, err)
|
|
}
|
|
return nil
|
|
}
|