1 2 3 4 5 6 7 8 9 10 11 12
//go:build windows package fuse import ( "syscall" ) // getAtimeNano returns the access time in nanoseconds for Windows systems func getAtimeNano(stat *syscall.Win32FileAttributeData) int64 { return stat.LastAccessTime.Nanoseconds() }