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


Python os.fsdecode()用法及代碼示例


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。

os.fsdecode()Python中的方法用於使用“ surrogateescape”錯誤處理程序或Windows中的“ strict”從文件係統編碼中解碼指定的文件名;

用法: os.fsdecode(filename) 

參數:
文件名:表示編碼文件的path-like對象。 path-like對象是表示路徑的str或bytes對象。

返回類型:此方法返回一個表示解碼後的文件名的字符串。

代碼:使用os.fsdecode()方法

# Python program to explain os.fsdecode() method  
    
# importing os module  
import os 
  
# Filename encoded to the filesystem encoding 
# with 'surrogateescape' error handler 
# or 'strict' error handler 
filename = b"/home / user / F\xc3\x8e\xe2\x95\x9a\xc3\x88.txt"
  
# Decode the above filename 
# form the filesystem encoding    
# with 'surrogateescape' error handler, 
# or 'strict' (On Windows) 
decode = os.fsdecode(filename) 
  
# Print the decoded filename 
print("Decoded filename:", decode) 
  
# To encode a filename to the filesystem  
# encoding with 'surrogateescape' error handler 
# or 'strict' error handler os.encode() method 
# can be used
輸出:
Encoded filename: b'/home/user/F\xc3\x8e\xe2\x95\x9a\xc3\x88.txt'
Decoded filename: /home/user/FÎ?È.txt

參考: https://docs.python.org/3/library/os.html#os.fsdecode



相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.fsdecode() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。