當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。