mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
11 lines
186 B
Go
11 lines
186 B
Go
//go: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)
|
|
}
|