Python中的OS模塊提供了與操作係統交互的函數。操作係統屬於 Python 的標準實用程序模塊。該模塊提供了一種使用操作係統相關函數的可移植方式。
中的一些方法操作係統模塊允許使用他們的follow_symlinks範圍。由於不同的平台提供不同的函數,follow_symlinks參數可能在一個平台上受支持,但在另一平台上不受支持。os.supports_follow_symlinks
在Python中是一個集合對象,它指示了哪些方法操作係統模塊允許使用他們的follow_symlinks參數
特定方法是否允許使用它們follow_symlinks參數與否,可以使用檢查在操作符開啟os.supports_follow_symlinks
.
例如:
下麵的表達式檢查是否os.stat()方法允許使用他們的follow_symlinks在本地平台上調用時是否有參數。
os.stat in os.supports_follow_symlinks
用法: os.supports_follow_symlinks
參數:這是一個不可調用的集合對象。因此,不需要參數。
返回類型:該方法返回一個集合對象,它代表了操作係統模塊,它允許使用它們的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)
輸出:
{<built-in function stat>, <built-in function chown>, <built-in function link>, <built-in function access>, <built-in function utime>}
代碼#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
相關用法
- Python os.supports_fd用法及代碼示例
- Python os.supports_bytes_environ用法及代碼示例
- Python os.supports_dir_fd用法及代碼示例
- Python os.set_inheritable()用法及代碼示例
- Python os.sendfile()用法及代碼示例
- Python os.set_blocking()用法及代碼示例
- Python os.sched_setaffinity()用法及代碼示例
- Python os.sched_getaffinity()用法及代碼示例
- Python os.sched_rr_get_interval()用法及代碼示例
- Python os.sched_get_priority_max()用法及代碼示例
- Python os.sched_get_priority_min()用法及代碼示例
- Python os.scandir()用法及代碼示例
- Python os.setgroups()用法及代碼示例
- Python os.setregid()用法及代碼示例
- Python os.setreuid()用法及代碼示例
- Python os.stat()用法及代碼示例
- Python os.statvfs()用法及代碼示例
- Python os.strerror()用法及代碼示例
- Python os.symlink()用法及代碼示例
- Python os.sync()用法及代碼示例
- Python os.sysconf()用法及代碼示例
- Python os.system()用法及代碼示例
- Python os.scandir用法及代碼示例
- Python os.stat用法及代碼示例
- Python os.spawnl用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.supports_follow_symlinks object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。