描述
方法lchown()将路径的所有者和组 ID 更改为数字 uid 和 gid。此函数不会遵循符号链接。要保持其中一个 id 不变,请将其设置为 -1。从 Python 3.3 开始,这相当于 os.chown(path, uid, gid, follow_symlinks=False)。
用法
以下是语法lchown()方法 -
os.lchown(path, uid, gid)
参数
path- 这是要为其设置所有权的文件路径。
uid- 这是要为文件设置的所有者 ID。
gid- 这是要为文件设置的组 ID。
返回值
此方法不返回任何值。
示例
下面的例子展示了 lchown() 方法的用法。
#!/usr/bin/python3
import os, sys
# Open a file
path = "/var/www/html/foo.txt"
fd = os.open( path, os.O_RDWR|os.O_CREAT )
# Close opened file
os.close( fd )
# Now change the file ownership.
# Set a file owner ID
os.lchown( path, 500, -1)
# Set a file group ID
os.lchown( path, -1, 500)
print ("Changed ownership successfully!!")
当我们运行上述程序时,它会产生以下结果 -
Changed ownership successfully!!
相关用法
- Python 3 os.lchmod()用法及代码示例
- Python 3 os.lchflags()用法及代码示例
- Python 3 os.lstat()用法及代码示例
- Python 3 os.lseek()用法及代码示例
- Python 3 os.link()用法及代码示例
- Python 3 os.listdir()用法及代码示例
- Python 3 os.fstatvfs()用法及代码示例
- Python 3 os.minor()用法及代码示例
- Python 3 os.close()用法及代码示例
- Python 3 os.unlink()用法及代码示例
- Python 3 os.major()用法及代码示例
- Python 3 os.rmdir()用法及代码示例
- Python 3 os.fdopen()用法及代码示例
- Python 3 os.fdatasync()用法及代码示例
- Python 3 os.isatty()用法及代码示例
- Python 3 os.rename()用法及代码示例
- Python 3 os.walk()用法及代码示例
- Python 3 os.renames()用法及代码示例
- Python 3 os.makedirs()用法及代码示例
- Python 3 os.utime()用法及代码示例
注:本文由纯净天空筛选整理自 Python 3 - os.lchown() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。