当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.setgroups()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

如果文件名和路径无效或无法访问,或者具有正确类型但操作系统不接受的其他参数,则os模块中的所有函数都会引发OSError。

os.setgroups()Python中的方法用于将与当前进程关联的补充组ID的列表设置为指定的列表。


补充组ID:在Unix系统中,每个用户必须是至少一个称为主组的组的成员。也有可能在组数据库的相关条目中将用户列为其他组的成员。这些附加组的ID称为补充组ID

注意: os.setgroups()该方法仅在UNIX系统上可用,并且该方法的函数通常仅对超级用户可用。
超级用户是指具有运行或执行操作系统中所有程序的所有权限的root用户或管理用户。

用法: os.setgroups(groups)

参数:
groups:要设置的补充组ID列表。列表的每个元素必须是代表组的整数。

返回类型:此方法不返回任何值。

代码:os.setgroups()方法的使用
# Python program to explain os.setgroups() method  
  
# importing os module  
import os 
  
# Get the list of supplemental 
# group IDs associated with 
# the current process  
# using os.getgroups() method 
sgid = os.getgroups() 
  
# Print the list 
print("Supplemental group IDs associated with the current process:") 
print(sgid) 
  
new_sgid = [ 20, 30, 40, 50] 
  
# Set the list of supplemental  
# group IDs for the current process 
# using os.setgroups() method  
os.setgroups(new_sgid)  
  
  
# Get the list of supplemental 
# group IDs associated with 
# the current process 
sgid = os.getgroups() 
  
# Print the list 
print("New supplemental group IDs associated with the current process:") 
print(sgid)
输出:
Supplemental group IDs associated with the current process:
[0]
New supplemental group IDs associated with the current process:
[20, 30, 40, 50]

Terminal-example



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.setgroups() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。