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


Python 3 os.fchown()用法及代码示例



描述

方法fchown()将 fd 给定的文件的所有者和组 ID 更改为数字 uid 和 gid。要保持其中一个 id 不变,请将其设置为 -1。

注意- 此方法在 Python 2.6 以后可用。

用法

以下是语法fchown()方法 -

os.fchown(fd, uid, gid)

参数

  • fd− 这是需要设置所有者 id 和组 id 的文件描述符。

  • uid- 这是要为文件设置的所有者 ID。

  • gid- 这是要为文件设置的组 ID。

返回值

此方法不返回任何值。仅在类 Unix 操作系统中可用。

示例

下面的例子展示了 fchown() 方法的用法。

#!/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!!

相关用法


注:本文由纯净天空筛选整理自 Python 3 - os.fchown() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。