github.com/cs3org/reva/v2@v2.27.7/pkg/storage/fs/posix/timemanager/timemanager_sysv.go (about) 1 //go:build dragonfly || linux || solaris 2 3 package timemanager 4 5 import "syscall" 6 7 // StatCtime returns the creation time 8 func StatCTime(st *syscall.Stat_t) syscall.Timespec { 9 return st.Ctim 10 }