Codebase list golang-github-vbatts-go-mtree / 5bd602f6-34b2-411b-80f3-7d65781fd7d4/main stat_windows.go
5bd602f6-34b2-411b-80f3-7d65781fd7d4/main

Tree @5bd602f6-34b2-411b-80f3-7d65781fd7d4/main (Download .tar.gz)

stat_windows.go @5bd602f6-34b2-411b-80f3-7d65781fd7d4/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
}