📜  Python| os.lchflags() 方法

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

Python| os.lchflags() 方法

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

Python中的os.lchflags()方法用于将指定路径的标志设置为数字标志,
此方法类似于os.chflags()方法,但它不遵循符号链接。

注意:此方法仅适用于 Unix 平台。

代码:使用os.lchflags()方法

# Python3 program to explain os.lchflags() method
  
# importing os library
import os
  
# Path
path = "GeeksForGeeks/sample.txt"
  
# Flag value
flag = os.UF_NODUMP
  
# Change the flag of the
# specified path using
# os.lchflags() method
os.lchflags(path, flag)
  
print("Flag changed successfully")
输出:
Flag changed successfully