Codebase list golang-github-vbatts-go-mtree / upstream/0.5.0+git20210914.1.1adae81 stat_unix.go
upstream/0.5.0+git20210914.1.1adae81

Tree @upstream/0.5.0+git20210914.1.1adae81 (Download .tar.gz)

stat_unix.go @upstream/0.5.0+git20210914.1.1adae81raw · 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)
}