github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/pkg/ctime/ctime.go (about) 1 // Package ctime includes a utility for determining file-creation times. 2 package ctime 3 4 import ( 5 "os" 6 "time" 7 ) 8 9 // Created returns the file-creation time. 10 func Created(fi os.FileInfo) time.Time { 11 return created(fi) 12 }