使用 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中文网其他相关文章!