📜  Python| os.path.supports_unicode_filenames 对象

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

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 系统不关心文件名的编码。他们将文件名简单地视为一个字节序列。

代码:使用 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

os.path.supports_unicode_filenames