15 lines
333 B
Go
15 lines
333 B
Go
package filesystem
|
|
|
|
import (
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
// Returns the time that the file/folder was created.
|
|
func (s *Stat) CTime() time.Time {
|
|
st := s.Info.Sys().(*syscall.Stat_t)
|
|
|
|
// Do not remove these "redundant" type-casts, they are required for 32-bit builds to work.
|
|
return time.Unix(int64(st.Ctim.Sec), int64(st.Ctim.Nsec))
|
|
}
|