当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.getresgid() and os.setresgid()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

如果文件名和路径无效或无法访问,或者具有正确类型但操作系统不接受的其他参数,则os模块中的所有函数都会引发OSError。

os.getresgid()Python中的方法用于获取当前进程的真实,有效和已保存的组ID,以及os.setresgid()方法用于设置当前流程的真实,有效和已保存的组ID。


另外,我们还可以使用以下方法获取当前流程的真实有效的组IDos.getgid()os.getegid()方法,还可以使用以下方法设置当前进程的真实和有效组IDos.setgid()os.setegid()方法分别。

注意: os.setresgid()os.getresgid()方法仅在UNIX平台和函数上可用os.setresgid()该方法通常仅对超级用户可用,因为只有超级用户才能更改进程的组ID。超级用户是指具有运行或执行操作系统中所有程序的所有权限的root用户或管理用户。

os.getresgid()方法-

用法: os.getresgid()

参数:不需要参数

返回类型:此方法返回一个元组,其属性表示当前进程的真实,有效和已保存的组ID。

代码1:os.getresgid()方法的使用
# Python program to explain os.getresgid() method  
  
# importing os module  
import os 
  
# Get the current process’s  
# real, effective, and saved group ids. 
# using os.getresgid() method 
rgid, egid, sgid = os.getresgid() 
  
# Print the current process’s 
# real, effective, and saved group ids. 
print("Real group id of the current process:", rgid) 
print("Effective group id of the current process:", egid) 
print("Saved group id of the current process:", sgid)

输出:
os.getresgid() method output

os.setresgid()方法-

用法: os.setresgid(rgid, egid, sgid)

参数:
rgid:一个整数值,代表当前进程的新组ID。
egid:一个整数值,表示当前进程的新有效组ID。
sgid:一个整数值,代表当前进程的新保存的组ID。

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

代码2:os.setresgid()方法的使用
# Python program to explain os.setresgid() method  
  
# importing os module  
import os 
  
  
# Get the current process’s  
# real, effective, and saved group ids 
# using os.getresgid() method 
rgid, egid, sgid = os.getresgid() 
  
# Print the current process’s 
# real, effective, and saved group ids 
print("Real group id of the current process:", rgid) 
print("Effective group id of the current process:", egid) 
print("Saved group id of the current process:", sgid) 
  
# Change the current process’s 
# real, effective, and saved group ids 
# using os.setresgid() method 
rgid = 100
egid = 200
sgid = 300
os.setresgid(rgid, egid, sgid) 
print("\nReal, effective, and saved group ids changed\n") 
  
  
# Get the current process’s  
# real, effective, and saved group ids 
# using os.getresgid() method 
rgid, egid, sgid = os.getresgid() 
  
# Print the current process’s 
# real, effective, and saved group ids 
print("Real group id of the current process:", rgid) 
print("Effective group id of the current process:", egid) 
print("Saved group id of the current process:", sgid)

输出:
os.setresgid() method output



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.getresgid() and os.setresgid() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。