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


Python os.getresgid() and os.setresgid()用法及代碼示例


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

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

os.getresgid()Python中的方法用於獲取當前進程的真實,有效和已保存的組ID,以及os.setresgid()方法用於設置當前流程的真實,有效和已保存的組ID。


另外,我們還可以使用以下方法獲取當前流程的真實有效的組IDos.getgid()os.getegid()方法,還可以使用以下方法設置當前進程的真實和有效組IDos.setgid()os.setegid()方法分別。

注意: os.setresgid()os.getresgid()方法僅在UNIX平台和函數上可用os.setresgid()該方法通常僅對超級用戶可用,因為隻有超級用戶才能更改進程的組ID。超級用戶是指具有運行或執行操作係統中所有程序的所有權限的root用戶或管理用戶。

os.getresgid()方法-

用法: os.getresgid()

參數:不需要參數

返回類型:此方法返回一個元組,其屬性表示當前進程的真實,有效和已保存的組ID。

代碼1:os.getresgid()方法的使用
# Python program to explain os.getresgid() method  
  
# importing os module  
import os 
  
# Get the current process’s  
# real, effective, and saved group ids. 
# using os.getresgid() method 
rgid, egid, sgid = os.getresgid() 
  
# Print the current process’s 
# real, effective, and saved group ids. 
print("Real group id of the current process:", rgid) 
print("Effective group id of the current process:", egid) 
print("Saved group id of the current process:", sgid)

輸出:
os.getresgid() method output

os.setresgid()方法-

用法: os.setresgid(rgid, egid, sgid)

參數:
rgid:一個整數值,代表當前進程的新組ID。
egid:一個整數值,表示當前進程的新有效組ID。
sgid:一個整數值,代表當前進程的新保存的組ID。

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

代碼2:os.setresgid()方法的使用
# Python program to explain os.setresgid() method  
  
# importing os module  
import os 
  
  
# Get the current process’s  
# real, effective, and saved group ids 
# using os.getresgid() method 
rgid, egid, sgid = os.getresgid() 
  
# Print the current process’s 
# real, effective, and saved group ids 
print("Real group id of the current process:", rgid) 
print("Effective group id of the current process:", egid) 
print("Saved group id of the current process:", sgid) 
  
# Change the current process’s 
# real, effective, and saved group ids 
# using os.setresgid() method 
rgid = 100
egid = 200
sgid = 300
os.setresgid(rgid, egid, sgid) 
print("\nReal, effective, and saved group ids changed\n") 
  
  
# Get the current process’s  
# real, effective, and saved group ids 
# using os.getresgid() method 
rgid, egid, sgid = os.getresgid() 
  
# Print the current process’s 
# real, effective, and saved group ids 
print("Real group id of the current process:", rgid) 
print("Effective group id of the current process:", egid) 
print("Saved group id of the current process:", sgid)

輸出:
os.setresgid() method output



相關用法


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