package files import ( "os" "git.tswf.io/incredible-go/incredible-go-core/pkg/io/files/file_perm" ) func MkdirsAutoPerm(dirLocation string) error { perm := file_perm.GetPermForDir(dirLocation) return os.MkdirAll(dirLocation, perm) }