//go:build !darwin && !linux package snapshot import ( "os" "time" ) // getCTime returns the file's modification time as a fallback on unsupported // platforms. See ctime_darwin.go and ctime_linux.go for platform-specific // implementations that extract actual ctime/birth time from syscall data. func getCTime(info os.FileInfo) time.Time { return info.ModTime() }