📜  Python| os.getgid() 和 os.setgid() 方法

📅  最后修改于: 2022-05-13 01:54:50.574000             🧑  作者: Mango

Python| os.getgid() 和 os.setgid() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。

os 模块中的所有函数在文件名和路径无效或不可访问的情况下,或具有正确类型但操作系统不接受的其他参数的情况下引发OSError

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

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

os.getgid() 方法

代码 #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方法终端输出

os.setgid() 方法

代码 #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 方法终端输出