Python os.path.supports_unicode_filenames
Python中的os.path.supports_unicode_filenames对象用于检查是否可以使用任意Unicode字符串作为文件名。
在除Darwin之外的posix系统上,os.path.supports_unicode_filenames总是错误的,因为posix系统不关心文件名的编码。它们将文件名简单地视为字节序列。
语法:os.path.supports_unicode_filenames
参数:这是一个不可调用的对象。因此,不需要参数
返回类型:此方法返回一个类bool的布尔值。如果系统支持Unicode字符串作为文件名,此方法返回True,否则返回False。
示例1
使用os.path.supports_unicode_filenames对象
# Python program to explain os.path.supports_unicode_filenames object
# importing os module
import os
# Check whether an arbitrary Unicode
# string can be used as
# a filename or not
support = os.path.supports_unicode_filenames
# Print the result
print(support)
输出:
False