mkdir_other.go 186 B

1234567891011
  1. //go:build !windows
  2. package file
  3. import "os"
  4. // MkdirAll just calls os.MkdirAll on non-Windows.
  5. func MkdirAll(path string, perm os.FileMode) error {
  6. return os.MkdirAll(path, perm)
  7. }