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


Python os.getgid() and os.setgid()用法及代码示例


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

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

os.getgid()Python中的方法用于获取当前进程的真实组ID,并且os.setgid()方法用于设置当前进程的真实组ID。


注意: os.setgid()os.getgid()这些方法仅在UNIX平台上可用。

os.getgid() method

用法: os.getgid()

参数:不需要参数

返回类型:此方法返回一个整数值,该整数值表示当前进程的真实组ID。

代码1:os.getgid()方法的使用
# Python program to explain os.getgid() method  
  
# importing os module  
import os 
  
# Get the group id 
# of the current process 
# using os.getgid() method 
gid = os.getgid() 
  
# Print the group ID 
# of the current process 
print("Group id of the current process:", gid)
输出:
Group id of the current process:1000

Getgid method terminal output

os.setgid() method

用法: os.setgid(euid)

参数:
euid:一个整数值,代表当前进程的新组ID。

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

代码2:os.setgid()方法的使用
# Python program to explain os.setgid() method  
  
# importing os module  
import os 
  
# Get the group id 
# of the current process 
# using os.getgid() method 
gid = os.getgid() 
  
# Print the real group id 
# of the current process 
print("Group id of the current process:", gid) 
  
# Change the group id 
# of the current process 
# using os.setgid() method 
gid = 23
os.setgid(gid) 
print("Group id changed") 
  
# Print the group id 
# of the current process 
gid = os.getgid() 
print("Group id of the current process:", gid)
输出:
Group id of the current process:0
Group id changed
Group id of the current process:23

Setgid method terminal output



相关用法


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