mirror of
https://github.com/rclone/rclone.git
synced 2025-01-13 20:38:12 +02: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)
|
|
}
|