📜  Python| os.setgroups() 方法

📅  最后修改于: 2022-05-13 01:54:28.897000             🧑  作者: Mango

Python| os.setgroups() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。

os 模块中的所有函数在文件名和路径无效或不可访问的情况下,或具有正确类型但操作系统不接受的其他参数的情况下引发OSError

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

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

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

代码: 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]

终端示例