首頁 > 後端開發 > Python教學 > 為什麼開啟檔案時`os.listdir`會導致`FileNotFoundError`?

為什麼開啟檔案時`os.listdir`會導致`FileNotFoundError`?

Barbara Streisand
發布: 2024-11-20 03:54:01
原創
877 人瀏覽過

Why Does `os.listdir` Cause `FileNotFoundError` When Opening Files?

使用os.listdir 迭代檔案時出現FileNotFoundError

使用os.listdir 迭代目錄中的檔案時,可能會遇到即使檔案存在,也會出現FileNotFoundError 錯誤。這是因為 os.listdir 只傳回檔名,而不是檔案的完整路徑。

import os

path = r'E:/somedir'

for filename in os.listdir(path):
    f = open(filename, 'r')
    ... # process the file
登入後複製

在此範例中,即使檔案存在,Python 也會拋出FileNotFoundError,因為filename 只包含檔案名稱,例如“foo.txt”,而不是完整路徑,例如“E:/somedir /foo.txt」。

要解決此問題,請使用os.path.join 將目錄路徑新增至檔案名稱:

path = r'E:/somedir'

for filename in os.listdir(path):
    with open(os.path.join(path, filename)) as f:
        ... # process the file
登入後複製

此外,建議使用帶有語句的上下文管理器來開啟文件,因為它可以確保文件在完成後正確關閉。

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

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板