Python| os.path.supports_unicode_filenames 对象
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。 os.path模块是Python中 OS 模块的子模块,用于常见的路径名操作。
Python中的os.path.supports_unicode_filenames
对象用于检查任意 Unicode字符串是否可以用作文件名。
os.path.supports_unicode_filenames
在除Darwin之外的 posix 系统上始终为False ,因为 posix 系统不关心文件名的编码。他们将文件名简单地视为一个字节序列。
Syntax: os.path.supports_unicode_filenames
Parameters: This is a non-callable object. Hence, no parameter is required
Return Type: This method returns a Boolean value of class bool. This method returns True if system supports Unicode string as filename otherwise returns False.
代码:使用 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