Python| os.getegid() 和 os.setegid() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
os 模块中的所有函数在文件名和路径无效或不可访问的情况下,或具有正确类型但操作系统不接受的其他参数的情况下引发OSError 。
Python中的os.getegid()
方法用于获取当前进程的有效组id, os.setegid()
方法用于设置当前进程的有效组id。
注意: os.setegid()
和os.getegid()
方法仅在 UNIX 平台上可用,并且 os.setegid( os.setegid()
方法的功能通常仅对超级用户可用。
超级用户是指具有在操作系统中运行或执行任何程序的所有权限的 root 用户或管理用户。
os.getegid() 方法——
Syntax: os.getegid()
Parameter: No parameter is required
Return Type: This method returns an integer value which represents the current process’s effective group id.
# 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() 方法——
Syntax: os.setegid(egid)
Parameter:
egid: An integer value representing new effective group id for the current process.
Return Type: This method does not return any value.
# 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)
输出: