mirror of
https://github.com/ManyakRus/crud_generator.git
synced 2024-12-22 00:36:41 +02:00
12 lines
214 B
Go
12 lines
214 B
Go
package copy
|
|
|
|
import "os"
|
|
|
|
func preserveTimes(srcinfo os.FileInfo, dest string) error {
|
|
spec := getTimeSpec(srcinfo)
|
|
if err := os.Chtimes(dest, spec.Atime, spec.Mtime); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|