Codebase list golang-github-vbatts-go-mtree / e9c91572-fbfa-47cf-bc70-c15effeb0253/main stat_windows.go
e9c91572-fbfa-47cf-bc70-c15effeb0253/main

Tree @e9c91572-fbfa-47cf-bc70-c15effeb0253/main (Download .tar.gz)

stat_windows.go @e9c91572-fbfa-47cf-bc70-c15effeb0253/mainraw · history · blame

// +build windows

package mtree

import "os"

func statIsUID(stat os.FileInfo, uid int) bool {
	return false
}
func statIsGID(stat os.FileInfo, uid int) bool {
	return false
}