首页 > 后端开发 > Python教程 > 为什么在Python中打开文件时`os.listdir`会导致`FileNotFoundError`?

为什么在Python中打开文件时`os.listdir`会导致`FileNotFoundError`?

Susan Sarandon
发布: 2024-11-30 09:02:10
原创
473 人浏览过

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

了解使用 os.listdir 并打开时的 FileNotFoundError 异常

在 Python 中,当使用 os.listdir 迭代目录中的文件时,用户可能会遇到 FileNotFoundError。这是因为 os.listdir 只返回文件名,而不是完整路径。

考虑以下代码:

import os

path = r'E:/somedir'

for filename in os.listdir(path):
    f = open(filename, 'r')
登录后复制

运行此代码时,Python 将引发 FileNotFoundError,即使文件存在。这是因为 open 在处理文件“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
登录后复制

此外,代码可以使用 with 块自动关闭文件。

以上是为什么在Python中打开文件时`os.listdir`会导致`FileNotFoundError`?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板