Codebase list golang-github-vbatts-go-mtree / run/65897af7-ab9f-4996-9538-b5ebe6a4353e/main stat_windows.go
run/65897af7-ab9f-4996-9538-b5ebe6a4353e/main

Tree @run/65897af7-ab9f-4996-9538-b5ebe6a4353e/main (Download .tar.gz)

stat_windows.go @run/65897af7-ab9f-4996-9538-b5ebe6a4353e/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
}