Codebase list golang-github-vbatts-go-mtree / 39dce7f4-4f64-46ae-91cf-5d7c2c236257/upstream stat_unix.go
39dce7f4-4f64-46ae-91cf-5d7c2c236257/upstream

Tree @39dce7f4-4f64-46ae-91cf-5d7c2c236257/upstream (Download .tar.gz)

stat_unix.go @39dce7f4-4f64-46ae-91cf-5d7c2c236257/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)
}