Codebase list golang-github-vbatts-go-mtree / upstream/0.5.2+ds stat_windows.go
upstream/0.5.2+ds

Tree @upstream/0.5.2+ds (Download .tar.gz)

stat_windows.go @upstream/0.5.2+ds

d1a96ae
1cf0881
 
 
 
 
 
 
 
 
 
 
 
//go:build windows
// +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
}