filesys.go 286 B

12345678910111213
  1. // +build !windows
  2. package system
  3. import (
  4. "os"
  5. )
  6. // MkdirAll creates a directory named path along with any necessary parents,
  7. // with permission specified by attribute perm for all dir created.
  8. func MkdirAll(path string, perm os.FileMode) error {
  9. return os.MkdirAll(path, perm)
  10. }