1
mirror of https://github.com/rclone/rclone synced 2024-11-25 02:47:14 +01:00
rclone/chtimes.go

15 lines
205 B
Go

// Default implementation of Chtimes
// +build !linux
package main
import (
"os"
"time"
)
func Chtimes(name string, atime time.Time, mtime time.Time) error {
return os.Chtimes(name, atime, mtime)
}