Codebase list golang-github-vbatts-go-mtree / d73ca0b5-a3f7-4c2f-8134-b8f36b48412e/upstream stat_windows.go
d73ca0b5-a3f7-4c2f-8134-b8f36b48412e/upstream

Tree @d73ca0b5-a3f7-4c2f-8134-b8f36b48412e/upstream (Download .tar.gz)

stat_windows.go @d73ca0b5-a3f7-4c2f-8134-b8f36b48412e/upstreamraw · 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
}