當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。