chtimes_unix.go 282 B

1234567891011121314
  1. // +build !windows
  2. package system
  3. import (
  4. "time"
  5. )
  6. //setCTime will set the create time on a file. On Unix, the create
  7. //time is updated as a side effect of setting the modified time, so
  8. //no action is required.
  9. func setCTime(path string, ctime time.Time) error {
  10. return nil
  11. }