Python的os.fchown()
方法将fd
给出的文件的所有者和组ID更改为数字uid
和gid
。 要使其中一个ID不变,请将其设置为-1
。
注意 - 此方法可用于Python 2.6以上版本。
语法
以下是fchown()
方法的语法 -
os.fchown(fd, uid, gid)
参数
- fd −这是需要设置所有者ID和组ID的文件描述符。
- uid - 这是要为文件设置的所有者ID。
- gid - 要为文件设置的组ID。
返回值
- 此方法不返回任何值,仅适用于Unix操作系统。
示例
以下示例显示了fchmod()
方法的用法。
#!/usr/bin/python3
import os, sys, stat
# Now open a file "/tmp/foo.txt"
fd = os.open( "/tmp", os.O_RDONLY )
# Set the user Id to 100 for this file.
os.fchown( fd, 100, -1)
# Set the group Id to 50 for this file.
os.fchown( fd, -1, 50)
print ("Changed ownership successfully!!")
# Close opened file.
os.close( fd )
执行上面代码后,将得到以下结果 -
Changed ownership successfully!!