Python 在嘗試開啟os.listdir 列出的檔案時引發FileNotFoundError
在Python 中,嘗試使用os 迭代目錄中的檔案儘管檔案存在,.listdir 仍可能引發FileNotFoundError。
這是因為 os.listdir 只傳回檔案名,而不回目錄路徑。因此,當 open 嘗試僅使用檔案名稱存取檔案時,會失敗,因為在目前目錄中找不到該檔案。
要解決此問題,請使用os.path.join 前置目錄os.listdir 傳回的每個檔案名稱的路徑:
此外,謹慎使用with 區塊來自動處理文件關閉。
以上是為什麼 Python 在開啟 `os.listdir` 列出的檔案時會引發 FileNotFoundError?的詳細內容。更多資訊請關注PHP中文網其他相關文章!