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


Python os.getgrouplist()用法及代碼示例


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。

如果文件名和路徑無效或無法訪問,或者具有正確類型但操作係統不接受的其他參數,則os模塊中的所有函數都會引發OSError。

在UNIX-like係統中,可以將多個用戶分組。組標識符(通常縮寫為GID)是用於表示特定組的數字值。它將係統用戶與共享共同點的其他用戶相關聯。


os.getgrouplist()Python中的方法用於獲取指定用戶所屬的所有組ID的列表。

注意: os.getgrouplist()該方法僅在UNIX平台上可用。

用法: os.getgrouplist(user, gid)

參數:
user:代表係統用戶的字符串值。
gid:代表群組ID的整數值。
如果gid不屬於指定的用戶,則它也將包含在返回列表中

返回類型:此方法返回一個列表,該列表表示指定用戶所屬的所有組ID。

代碼:os.getgrouplist()方法的使用
# Python program to explain os.getgrouplist() method  
  
# importing os module  
import os 
  
# System user 
user = "ihritik"
  
# Group id 
gid = 100
  
# Get the list of all 
# group ids the specified user 
# belongs to using 
# os.getgrouplist() method 
groupList = os.getgrouplist(user, gid) 
  
# Print the list 
print("% s is associated with the following group ids:" % user) 
print(groupList, "\n") 
  
  
# System user 
user = "root"
  
# Group id 
gid = 100
  
# Get the list of all 
# group ids the specified user 
# belongs to using 
# os.getgrouplist() method 
groupList = os.getgrouplist(user, gid) 
  
# Print the list 
print("%s is associated with the following group ids:" %user) 
print(groupList) 
  
  
# If the specified gid does not 
# belongs to the specified user 
# it will also be included in  
# the list of groups
輸出:
ihritik is associated with the following group ids:
[100, 4, 24, 27, 30, 46, 118, 128] 

root is associated with the following group ids:
[100]

os.getgrouplist() method output



相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.getgrouplist() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。