chown

chown

[code]
func Chown(filename string, uid, gid int) bool {
	return os.Chown(filename, uid, gid) == nil
}
[/code]