Python os.path.supports_unicode_filenames - 检查是否可以使用任意Unicode字符串作为文件名

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

Python os.path.supports_unicode_filenames

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程