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
Syntax: os.supports_follow_symlinks
Parameter: This is a non callable set object. Hence, no parameter is required.
Return Type: This method returns a set object which represents the methods in the OS module, which permits the use of their follow_symlinks parameter.
# 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)
{, ,
, ,
}
# 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