📜  Python| os.supports_follow_symlinks 对象

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

Python| os.supports_follow_symlinks 对象

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

OS 模块中的某些方法允许使用它们的follow_symlinks参数。由于不同的平台提供不同的功能, follow_symlinks参数可能在一个平台上受支持,但在另一个平台上不受支持。 Python中的os.supports_follow_symlinks是一个集合对象,它指示OS 模块中的哪些方法允许使用它们的follow_symlinks参数

特定方法是否允许使用其follow_symlinks参数,可以使用os.supports_follow_symlinks的 in运算符进行检查。
例如:
下面的表达式检查 os.stat() 方法在本地平台上调用时是否允许使用它们的follow_symlinks参数。

os.stat in os.supports_follow_symlinks
代码 #1:使用 os.supports_follow_symlinks 对象
# Python program to explain os.supports_follow_symlinks object  
  
# importing os module 
import os
  
  
# Get the list of all methods
# which permits the use of their
# follow_symlinks parameter
methodList = os.supports_follow_symlinks
  
# Print the list
print(methodList)
输出:
{, ,
, , 
}
代码 #2:使用 os.supports_follow_symlinks 对象来检查特定方法是否允许使用它们的 follow_symlinks 参数。
# Python program to explain os.supports_follow_symlinks object  
  
# importing os module 
import os
  
  
# Check whether os.stat() method
# permits the use of their 
# follow_symlinks parameter or not
support = os.stat in os.supports_follow_symlinks
  
# Print result
print(support)
  
  
# Check whether os.fwalk() method
# permits the use of their
# follow_symlinks parameter or not
support = os.fwalk in os.supports_follow_symlinks
  
# Print result
print(support)
输出:
True
False