如何将每日.csv写入特定的文件路径

时间:2016-04-07 03:43:34

标签: python csv directory filepath writing

我每天都在运行一个程序,并希望生成的.csv被写入我的C盘上的文件夹。出于某种原因,我可以创建文件夹并写入1个文件,但没有其他文件被写入。没有任何错误,只是没有其他文件写入该文件夹。这是代码。感谢

代码:

CSVdir = r"C:\Users\Maurice\Desktop\Python\New_Project\OptionsData\\OptionsData-{}.csv"
realCSVdir = os.path.realpath(CSVdir)

if not os.path.exists(CSVdir): 
    os.makedirs(CSVdir)
    str1 = "\n".join(data)
    now = datetime.datetime.now() #+ datetime.timedelta(days=1)
    now_str = now.strftime("%Y-%m-%d")

    new_file_name = os.path.join(realCSVdir,'OptionsData-{}.csv'.format(now_str)) 
    new_file = open(new_file_name, 'wb')

    for item in money_list:
        if len(item) != 0 :
            for other_item in item :
                new_file.write(other_item + str1 + new_file)

                new_file.close()

            print("Eureka!")

1 个答案:

答案 0 :(得分:2)

CSVdir = r"C:\Users\Maurice\Desktop\Python\New_Project\OptionsData\\OptionsData-{}.csv"

应该是

CSVdir = r"C:\Users\Maurice\Desktop\Python\New_Project\OptionsData"

if not os.path.exists(CSVdir): 
    os.makedirs(CSVdir)

# The following lines should be out of if statement.

str1 = "\n".join(data)
now = datetime.datetime.now() #+ datetime.timedelta(days=1)
now_str = now.strftime("%Y-%m-%d")

new_file_name = os.path.join(realCSVdir,'OptionsData-{}.csv'.format(now_str)) 
new_file = open(new_file_name, 'wb')


for item in money_list:
    if len(item) != 0 :
        for other_item in item :
            new_file.write(other_item + str1 + new_file)

            new_file.close()

        print("Eureka!")