mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 08:54:10 +01:00
12 lines
205 B
Go
12 lines
205 B
Go
|
//go:build !windows
|
||
|
// +build !windows
|
||
|
|
||
|
package file
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
// MkdirAll just calls os.MkdirAll on non-Windows.
|
||
|
func MkdirAll(path string, perm os.FileMode) error {
|
||
|
return os.MkdirAll(path, perm)
|
||
|
}
|