tstor/server/pkg/go-nfs/file/file_windows.go
2025-03-22 08:49:14 +04:00

12 lines
225 B
Go

//go:build windows
package file
import "os"
func getInfo(info os.FileInfo) *FileInfo {
// https://godoc.org/golang.org/x/sys/windows#GetFileInformationByHandle
// can be potentially used to populate Nlink
return nil
}