Python os.getegid()和os.setegid()
Python os模块中的所有函数在文件名和路径无效或不可访问,或其他具有正确类型但操作系统不接受的参数时都会引发OSError。
Python中的os.getegid()方法用于获取当前进程的有效组id,os.setegid()方法用于设置当前进程的有效组id。
注意:os.setegid()和os.getegid()方法只在UNIX平台上可用,而os.setegid()方法的功能通常只对超级用户可用。
超级用户是指具有运行或执行操作系统中任何程序的所有权限的根用户或管理用户。
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)
Output:
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)
输出: