mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
15 lines
205 B
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)
|
|
}
|