Codebase list golang-github-vbatts-go-mtree / bd45743a-c878-4d01-97da-094c1925934b/upstream stat_windows.go
bd45743a-c878-4d01-97da-094c1925934b/upstream

Tree @bd45743a-c878-4d01-97da-094c1925934b/upstream (Download .tar.gz)

stat_windows.go @bd45743a-c878-4d01-97da-094c1925934b/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
}