Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
如果文件名和路徑無效或無法訪問,或者具有正確類型但操作係統不接受的其他參數,則os模塊中的所有函數都會引發OSError。
os.getegid()
Python中的方法用於獲取當前進程的有效組ID和os.setegid()
方法用於設置當前進程的有效組ID。
注意: os.setegid()
和os.getegid()
方法僅在UNIX平台上可用,並且os.setegid()
方法通常僅對超級用戶可用。
超級用戶是指具有運行或執行操作係統中所有程序的所有權限的root用戶或管理用戶。
os.getegid()方法-
用法: os.getegid()
參數:不需要參數
返回類型:此方法返回一個整數值,代表當前進程的有效組ID。
代碼1:os.getegid()方法的使用
# Python program to explain os.getegid() method
# importing os module
import os
# Get the effective group id
# of the current process
# using os.getegid() method
egid = os.getegid()
# Print the effective group id
# of the current process
print("Effective group id of the current process:", egid)
輸出:
os.setegid()方法-
用法: os.setegid(egid)
參數:
egid:一個整數值,表示當前進程的新有效組ID。
返回類型:此方法不返回任何值。
代碼2:os.setegid()方法的使用
# Python program to explain os.setegid() method
# importing os module
import os
# Get the effective group id
# of the current process
# using os.getegid() method
egid = os.getegid()
# Print the effective group id
# of the current process
print("Effective group id of the current process:", egid)
# Change the effective group id
# for the current process
# using os.setegid() method
egid = 200
os.setegid(egid)
print("Effective group id changed")
# Print the effective group id
# of the current process
egid = os.getegid()
print("Effective group id of the current process:", egid)
輸出:
相關用法
- Python next()用法及代碼示例
- Python set()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python os.WEXITSTATUS()用法及代碼示例
- Python os._exit()用法及代碼示例
- Python PIL UnsahrpMask()用法及代碼示例
- Python Numpy np.fft()用法及代碼示例
- Python os.abort()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.WIFEXITED()用法及代碼示例
- Python os.setgroups()用法及代碼示例
- Python os.getcwd()用法及代碼示例
- Python os.sendfile()用法及代碼示例
- Python os.pipe2()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.getegid() and os.setegid() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。