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


Python os.getgid() and os.setgid()用法及代碼示例


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

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

os.getgid()Python中的方法用於獲取當前進程的真實組ID,並且os.setgid()方法用於設置當前進程的真實組ID。


注意: os.setgid()os.getgid()這些方法僅在UNIX平台上可用。

os.getgid() method

用法: os.getgid()

參數:不需要參數

返回類型:此方法返回一個整數值,該整數值表示當前進程的真實組ID。

代碼1:os.getgid()方法的使用
# Python program to explain os.getgid() method  
  
# importing os module  
import os 
  
# Get the group id 
# of the current process 
# using os.getgid() method 
gid = os.getgid() 
  
# Print the group ID 
# of the current process 
print("Group id of the current process:", gid)
輸出:
Group id of the current process:1000

Getgid method terminal output

os.setgid() method

用法: os.setgid(euid)

參數:
euid:一個整數值,代表當前進程的新組ID。

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

代碼2:os.setgid()方法的使用
# Python program to explain os.setgid() method  
  
# importing os module  
import os 
  
# Get the group id 
# of the current process 
# using os.getgid() method 
gid = os.getgid() 
  
# Print the real group id 
# of the current process 
print("Group id of the current process:", gid) 
  
# Change the group id 
# of the current process 
# using os.setgid() method 
gid = 23
os.setgid(gid) 
print("Group id changed") 
  
# Print the group id 
# of the current process 
gid = os.getgid() 
print("Group id of the current process:", gid)
輸出:
Group id of the current process:0
Group id changed
Group id of the current process:23

Setgid method terminal output



相關用法


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