Pandas to_csv()检查覆盖

时间:2016-11-02 08:28:48

标签: python python-2.7 pandas export-to-csv file-management

当我分析数据时,我将数据帧保存到csv文件中并使用pd.to_csv()。但是,函数(over)会写入新文件,而不检查是否存在具有相同名称的文件。 有没有办法检查文件是否已经存在,如果是,请求新的文件名?

我知道我可以将系统的日期时间添加到文件名中,这可以防止任何覆盖,但我想知道我何时犯了错误。

2 个答案:

答案 0 :(得分:7)

尝试以下方法:

import glob
import pandas as pd

# Give the filename you wish to save the file to
filename = 'Your_filename.csv'

# Use this function to search for any files which match your filename
files_present = glob.glob(filename)


# if no matching files, write to csv, if there are matching files, print statement
if not files_present:
    pd.to_csv(filename)
else:
    print 'WARNING: This file already exists!' 

我没有对此进行测试,但它已经从我之前编写的一些代码中解除并编译。这将简单地阻止文件覆盖其他人。注:你必须自己更改文件名变量然后保存文件,或者按照你的建议使用一些日期时间变量。我希望这在某种程度上有所帮助。

答案 1 :(得分:3)

根据TaylorDay的建议,我对功能进行了一些调整。使用以下代码,系统会询问您是否要覆盖现有文件。如果没有,您可以输入其他名称。然后,调用相同的写函数,这将再次检查new_filename是否存在。

from os import path
import pandas as pd
def write_csv_df(path, filename, df):
    # Give the filename you wish to save the file to
    pathfile = os.path.normpath(os.path.join(path,filename))

    # Use this function to search for any files which match your filename
    files_present = os.path.isfile(pathfile) 
    # if no matching files, write to csv, if there are matching files, print statement
    if not files_present:
        df.to_csv(pathfile, sep=';')
    else:
        overwrite = raw_input("WARNING: " + pathfile + " already exists! Do you want to overwrite <y/n>? \n ")
        if overwrite == 'y':
            df.to_csv(pathfile, sep=';')
        elif overwrite == 'n':
            new_filename = raw_input("Type new filename: \n ")
            write_csv_df(path,new_filename,df)
        else:
            print "Not a valid input. Data is NOT saved!\n"