Windows: mkdirall volume path aware
Signed-off-by: jhowardmsft <jhoward@microsoft.com>
This commit is contained in:
parent
2bbd2f8dd0
commit
aa589b5288
2 changed files with 75 additions and 0 deletions
11
system/filesys.go
Normal file
11
system/filesys.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
// +build !windows
|
||||
|
||||
package system
|
||||
|
||||
import (
|
||||
"os"
|
||||
)
|
||||
|
||||
func MkdirAll(path string, perm os.FileMode) error {
|
||||
return os.MkdirAll(path, perm)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue