Python os.getgroups()
os模块中的所有函数在文件名和路径无效或不可访问,或其他具有正确类型但操作系统不接受的参数时都会引发OSError。
Python中的os.getgroups()方法用于获取与当前进程相关联的辅助组id列表。
补充组id:在Unix系统中,每个用户必须是至少一个称为主组的组的成员。也可以在组数据库的相关条目中将用户列为其他组的成员。这些附加组的id称为补充组id
注意:os.getgroups()方法只在UNIX系统上可用。
语法:os.getgroups()
参数:不需要参数
返回类型:该方法返回一个表示与当前进程关联的补充组id的列表
示例1
使用os.getgroups()方法
# Python program to explain os.getgroups() method
# importing os module
import os
# Get the list of supplementary
# group IDs associated with
# the current process
s_grp_id = os.getgroups()
# Print the list
print("Supplementary group IDs associated with the current process:")
print(s_grp_id)
输出:
Supplementary group IDs associated with the current process:
[4, 24, 27, 30, 46, 118, 128, 1000]