描述
方法lchflags()将路径标志设置为数字标志。与 chflags() 方法不同,此方法不遵循符号链接。从 Python 3.3 开始,这等效于 os.chflags(path, flags, follow_symlinks = False)。
在这里,标志可以采用以下值的组合(按位或)(在 stat 模块中定义) -
UF_NODUMP− 不要转储文件。
UF_IMMUTABLE− 文件不得更改。
UF_APPEND− 文件只能附加到。
UF_NOUNLINK− 文件不得重命名或删除。
UF_OPAQUE− 通过联合堆栈查看时,该目录是不透明的。
SF_ARCHIVED− 文件可能已存档。
SF_IMMUTABLE− 文件不得更改。
SF_APPEND− 文件只能附加到。
SF_NOUNLINK− 文件不得重命名或删除。
SF_SNAPSHOT− 文件为快照文件。
注意- 此方法已在 Python 2.6 中引入
用法
以下是语法lchflags()方法 -
os.lchflags(path, flags)
参数
path- 这是要设置标志的文件路径。
flags- 这可能是上述定义的标志值的组合(按位或)。
返回值
此方法不返回任何值。在类 Unix 系统上可用
示例
下面的例子展示了 lchflags() 方法的用法。
#!/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 flag.
ret = os.lchflags(path, os.UF_IMMUTABLE )
print ("Changed file flag successfully!!")
结果
当我们运行上述程序时,它会产生以下结果 -
Changed file flag successfully!!
相关用法
- Python 3 os.lchown()用法及代码示例
- Python 3 os.lchmod()用法及代码示例
- 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.lchflags() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。