Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
如果文件名和路徑無效或無法訪問,或者具有正確類型但操作係統不接受的其他參數,則os模塊中的所有函數都會引發OSError。
os.setregid()
Python中的方法用於設置當前進程的真實有效組ID。但是,我們可以使用以下命令分別設置當前流程的實際有效組IDos.setgid()
和os.setegid()
方法分別。
注意: os.setregid()
該方法僅在UNIX平台上可用,並且該方法的函數通常僅對超級用戶可用。超級用戶是指具有運行或執行操作係統中所有程序的所有權限的root用戶或管理用戶。
用法: os.setregid(rgid, egid)
參數:
rgid:一個整數值,代表當前進程的新組ID。
egid:一個整數值,表示當前進程的新有效組ID。
返回類型:此方法不返回任何值。
代碼:os.setregid()方法的使用
# Python program to explain os.setregid() method
# importing os module
import os
# Get the current process’s
# real group id
# using os.getgid() method
rgid = os.getgid()
# Get the current process’s
# effective group id.
# using os.getegid() method
egid = os.getegid()
# Print the current process’s
# real and effective group ids.
print("Real group id of the current process:", rgid)
print("Effective group id of the current process:", egid)
# Change the current process’s
# real and effective group ids
# using os.setregid() method
rgid = 100
egid = 200
os.setregid(rgid, egid)
print("\nReal and effective group ids changed\n")
# Get the current process’s
# real and effective group ids
rgid = os.getgid()
egid = os.getegid()
# Print the current process’s
# real and effective group ids.
print("Real group id of the current process:", rgid)
print("Effective group id of the current process:", egid)
# We can also use os.setgid() and
# os.setegid() method to set the
# current process’s real and
# effective group ids respectively
# Change the current process’s
# real group id
# using os.setgid() method
rgid = 300
os.setgid(rgid)
# Change the current process’s
# effective group id
# using os.setegid() method
egid = 400
os.setegid(egid)
print("\nReal and effective group ids changed\n")
# Print the current process’s
# real and effective group ids.
print("Real group id of the current process:", rgid)
print("Effective group id of the current process:", egid)
輸出:
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python os.readlink()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.setregid() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。