excel_path = os.getcwd()
excel_fpath = 'exceldata//'
excel_final_path = os.path.join(excel_path, excel_fpath)
filename = excel_final_path + '系统导出-' + time.strftime("%Y-%m-%d",time.localtime()) + '.xls'
with open(filename, "wb") as code:
code.write(excelout.content)
print('表格下载完成')
按理说应该会存在于
D:/program/test/pythonfile/exceldata/系统导出.xls
但是变成
D:/exceldata/系统导出.xls
难道是我在程序一开始就执行一次上面的内容,然后在def里面又执行一次上面相同内容的问题吗?,也不应该呀。
我需要打开在python程序目录下子文件夹内的文件,为什么引用路径变成D盘根目录下去了呢?请问该怎么操作呢?
需要支持程序放在哪就在哪运行
D:/pythonfile/exceldata/系统导出.xls
E:/program/test/pythonfile/exceldata/系统导出.xls