我用下面的代码检查存储在可变负载下的位置中的文件。下面给出了实现这一点的代码:
if type == 'file_1':
current_directory = path.abspath(path.join(__file__, ".."))
base = os.path.join(current_directory, 'file')
loads = pd.read_csv(base + f'/output/{name}_{date}.csv', sep= ',')
resp = make_response(loads.to_csv(index=False))
resp.headers["Content-Disposition"] = f'attachment; filename={name}_{date}.csv'
resp.headers["Content-Type"] = "text/csv"
return resp
我试图修改这个文件,如果文件检查文件是否存在于加载中,它将返回csv文件,否则将返回一个空数据帧。谁能帮我修改一下吗谢谢