IOError没有这样的文件或目录,但文件确实存在

时间:2016-07-01 22:18:43

标签: mysql python-3.x csv ioerror

以下程序用于读取CSV文件并将其转换为MySQL插入语句:

import csv

openFile = open('test.csv', 'r')
csvFile = csv.reader(openFile)
header = next(csvFile)
headers = map((lambda x: "'"+x+"'"), header)
insert = 'INSERT INTO Table (' + ", ".join(headers) +", 'time_stamp'" +") VALUES "
for row in csvFile:
    values = map((lambda x: "'"+x.strip()+"'"), row)
    print (insert +"("+ ", ".join(values) +", getdate());" )
openFile.close()

我做了以下修改,试图让程序使用多个文件,而不是仅显式地列出文件名,但是当文件清楚存在时,不断显示IOError: [Errno 2] No such file or directory: 'Exact name of existing file.csv'错误,因为它正在打印确切文件名。如何编辑以下代码以使其适用于目录中的一组文件而不会出现错误?

import csv, os

path = 'C:/Users/August/Desktop/TripDetailFiles/test'
for csvFile in os.listdir(path):
    if csvFile.endswith('.csv'):
        openFile = open(csvFile)
    readFile = csv.reader(openFile)
    header = next(readFile)
    headers = map((lambda x: "'"+x+"'"), header)
    insert = 'INSERT INTO Table (' + ", ".join(headers) +", 'time_stamp'" +") VALUES "
    for row in csvFile:
        values = map((lambda x: "'"+x.strip()+"'"), row)
        print (insert +"("+ ", ".join(values) +", getdate());" )
    openFile.close()

1 个答案:

答案 0 :(得分:1)

绝对路径告诉我你没有从该目录中运行脚本。

我相信os.listdir只给你文件名而不是路径,并且这些文件名在脚本运行的目录中不存在。你需要连接路径和文件名!

openFile = open(path + '/' + csvFile)