1 2 3 4 5 6 7 8 9 10 11 12
// +build !linux package ctime import ( "os" "time" ) func created(fi os.FileInfo) time.Time { return fi.ModTime() }