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

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

stat_windows.go @bd45743a-c878-4d01-97da-094c1925934b/main

1cf0881
 
 
 
 
 
 
 
 
 
 
 
// +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
}