Codebase list golang-github-vbatts-go-mtree / ba6ae86e-ba9c-46db-9248-ebba3da2645f/upstream stat_unix.go
ba6ae86e-ba9c-46db-9248-ebba3da2645f/upstream

Tree @ba6ae86e-ba9c-46db-9248-ebba3da2645f/upstream (Download .tar.gz)

stat_unix.go @ba6ae86e-ba9c-46db-9248-ebba3da2645f/upstreamraw · history · blame

// +build !windows

package mtree

import (
	"os"
	"syscall"
)

func statIsUID(stat os.FileInfo, uid int) bool {
	statT := stat.Sys().(*syscall.Stat_t)
	return statT.Uid == uint32(uid)
}

func statIsGID(stat os.FileInfo, gid int) bool {
	statT := stat.Sys().(*syscall.Stat_t)
	return statT.Gid == uint32(gid)
}