Python| os.fsencode() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
Python中的os.fsencode()
方法用于将指定的文件名编码为带有 ' surrogateescape ' 错误处理程序的文件系统编码,或者在 Windows 上使用 ' strict ';
Syntax: os.fsencode(filename)
Parameter:
filename: A path-like object representing a file system path. A path-like object is either a str or bytes object representing a path.
Return Type: This method returns a bytestring which represents the encoded filename.
代码: os.fsencode() 方法的使用
# Python program to explain os.fsencode() method
# importing os module
import os
# Filename
filename = "/home/user/File.txt"
# Encode the filename
# to the filesystem encoding
# with 'surrogateescape' error handler,
# or 'strict' (On Windows)
encode = os.fsencode(filename)
# Print the encoded filename
print(encode)
# The encode filename can be
# decoded using os.fsdecode() method
print(os.fsdecode(encode))
输出:
Encoded filename: b'/home/user/F\xc3\x8e\xe2\x95\x9a\xc3\x88.txt'
/home/user/FÎ?È.txt
参考: https://docs。 Python.org/3/library/os.html#os.fsencode