Windows: mkdirall volume path aware

Signed-off-by: jhowardmsft <jhoward@microsoft.com>
This commit is contained in:
jhowardmsft 2015-04-23 15:55:36 -07:00 committed by John Howard
parent 2bbd2f8dd0
commit aa589b5288
2 changed files with 75 additions and 0 deletions

11
system/filesys.go Normal file
View file

@ -0,0 +1,11 @@
// +build !windows
package system
import (
"os"
)
func MkdirAll(path string, perm os.FileMode) error {
return os.MkdirAll(path, perm)
}