Python os.fsencode()
Python中的os.fsencode()方法用于将指定的文件名编码为文件系统编码,在Windows上使用“surrogateescape”错误处理程序或“strict”;
语法:os.fsencode(filename)
参数:
filename:表示文件系统路径的类路径对象。类路径对象是表示路径的str或bytes对象。
返回类型:该方法返回一个字节串,表示编码后的文件名。
示例1
使用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