mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 08:23:47 +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)
|
||
|
}
|