我正在尝试使用以下行写入 CSV 文件,我认为“ab+”会创建该文件,即使它不存在但显然它失败了..知道当文件不存在时我应该打开哪种模式来创建文件吗?
#Keep appending date and count everytime this script is run
c = csv.writer(open("//location/scripts/" + csv_file + ".csv", "ab+"))
错误:-
IOError: [Errno 2] No such file or directory: '//location/scripts/BT_FM_BUGGY_FIX_CRTREND.csv'