1
mirror of https://github.com/rclone/rclone synced 2025-03-24 07:04:23 +01:00
rclone/lib/file/mkdir_other.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)
}