Codebase list golang-github-vbatts-go-mtree / 580124fe-edbd-470c-b49b-b582d0a48943/main stat_windows.go
580124fe-edbd-470c-b49b-b582d0a48943/main

Tree @580124fe-edbd-470c-b49b-b582d0a48943/main (Download .tar.gz)

stat_windows.go @580124fe-edbd-470c-b49b-b582d0a48943/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
}