Python错误:FileNotFoundError:[Errno 2]没有这样的文件或目录

时间:2018-04-24 22:47:34

标签: python python-3.x file

我正在尝试从文件夹中打开文件并阅读它,但它没有找到它。我正在使用Python3

这是我的代码:

import os
import glob

prefix_path = "C:/Users/mpotd/Documents/GitHub/Python-Sample-                
codes/Mayur_Python_code/Question/wx_data/"
target_path = open('MissingPrcpData.txt', 'w')
file_array = [os.path.abspath(f) for f in os.listdir(prefix_path) if 
f.endswith('.txt')]
file_array.sort() # file is sorted list

for f_obj in range(len(file_array)):
     file = os.path.abspath(file_array[f_obj])
     join_file = os.path.join(prefix_path, file) #whole file path

for filename in file_array:
     log = open(filename, 'r')#<---- Error is here

Error: FileNotFoundError: [Errno 2] No such file or directory: 'USC00110072.txt'

2 个答案:

答案 0 :(得分:3)

您没有将文件的完整路径提供给open(),只是名称。

您必须os.path.join()正确的目录路径,或os.chdir()到文件所在的目录。

从您的代码我可以推断,您忘记修改file_array列表。要解决此问题,请将第一个循环更改为:

file_array = [os.path.join(prefix_path, name) for name in file_array]

此外,请记住,os.path.abspath()无法通过它的名称来推断文件的完整路径。

让我重申一下。

代码中的这一行:

file_array = [os.path.abspath(f) for f in os.listdir(prefix_path) if f.endswith('.txt')]

错了。它不会为您提供具有正确绝对路径的列表。你应该做的是:

import os
import glob

prefix_path = ("C:/Users/mpotd/Documents/GitHub/Python-Sample-"    
               "codes/Mayur_Python_code/Question/wx_data/")
target_path = open('MissingPrcpData.txt', 'w')
file_array = [f for f in os.listdir(prefix_path) if f.endswith('.txt')]
file_array.sort() # file is sorted list

file_array = [os.path.join(prefix_path, name) for name in file_array]

for filename in file_array:
     log = open(filename, 'r')

答案 1 :(得分:0)

您正在使用相对路径,您应该使用绝对路径。使用os.path处理文件路径是个好主意。您的代码易于修复:

prefix = os.path.abspath(prefix_path) 
file_list = [os.path.join(prefix, f) for f in os.listdir(prefix) if f.endswith('.txt')]

请注意,您的代码还存在其他一些问题:

  1. 在python中,你可以for thing in things。你做for thing in range(len(things))它的可读性和不必要性都很低。

  2. 打开文件时应使用上下文管理器。阅读更多here