📜  Python| os.chflags() 方法

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

Python| os.chflags() 方法

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

Python中的os.chflags()方法用于将路径标志设置为数字标志;仅在 Unix 中可用。标志可以采用标志值的组合(按位或)。

# Python3 program to change directory 
# of file using os.chflags() method
  
# import os library
import os
  
# defining path and flag
path = "gfg_dir/geek.txt"
flag = os..UF_IMMUTABLE
  
# assigning val to function chflags()
val = os.chflags(path, flag)
  
# Doesn't return any value, so
# nothing will be printed
print("Operation successful, returning value: %s" %val)

输出:

Operation successful, returning value: None