mirror of
https://github.com/rclone/rclone.git
synced 2025-03-04 02:11:32 +01:00
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)
|
||
|
}
|