当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.fsencode()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

os.fsencode()Python中的方法用于使用“ surrogateescape”错误处理程序或Windows中的“ strict”将指定的文件名编码为文件系统编码;

用法: os.fsencode(filename) 

参数:
文件名:代表文件系统路径的path-like对象。 path-like对象是表示路径的str或bytes对象。

返回类型:此方法返回一个代表已编码文件名的字节串。

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



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.fsencode() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。