mirror of https://github.com/rclone/rclone.git
9 lines
153 B
Go
9 lines
153 B
Go
|
package file
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
// MkdirAll now just calls os.MkdirAll
|
||
|
func MkdirAll(path string, perm os.FileMode) error {
|
||
|
return os.MkdirAll(path, perm)
|
||
|
}
|