mirror of
https://github.com/chrislusf/seaweedfs
synced 2025-09-09 21:02:46 +02:00
12 lines
240 B
Go
12 lines
240 B
Go
//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()
|
|
}
|