首頁  >  文章  >  後端開發  >  為什麼 Python 在開啟 `os.listdir` 列出的檔案時會引發 FileNotFoundError?

為什麼 Python 在開啟 `os.listdir` 列出的檔案時會引發 FileNotFoundError?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-11-20 16:56:17586瀏覽

Why Does Python Raise a FileNotFoundError When Opening Files Listed by `os.listdir`?

Python 在嘗試開啟os.listdir 列出的檔案時引發FileNotFoundError

在Python 中,嘗試使用os 迭代目錄中的檔案儘管檔案存在,.listdir 仍可能引發FileNotFoundError。

這是因為 os.listdir 只傳回檔案名,而不回目錄路徑。因此,當 open 嘗試僅使用檔案名稱存取檔案時,會失敗,因為在目前目錄中找不到該檔案。

要解決此問題,請使用os.path.join 前置目錄os.listdir 傳回的每個檔案名稱的路徑:

此外,謹慎使用with 區塊來自動處理文件關閉。

以上是為什麼 Python 在開啟 `os.listdir` 列出的檔案時會引發 FileNotFoundError?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn