我使用FileExchange代码cell2csv在我的代码中保存一个单元格。我想将输出文件csv文件保存到不同的目录中。怎么办?
这是我目前保存单元格的代码:
cell2csv([fname(13:16), '-', u_id{k}, '_24hrBlkAvg.csv'], site_data, '\t'); % cell2csv(filename,cellArray,delimiter)
答案 0 :(得分:0)
您可以使用fullfile
以与系统无关的方式构建路径
%// do not put everything in one line, the code should be readable to human:
filename = [fname(13:16), '-', u_id{k}, '_24hrBlkAvg.csv']
filepath = fullfile(beetroot_folder, daughter_folder, subsubfolder, filename)
cell2csv(filepath, site_data, '\t');
如果您需要保存在子文件夹中,请使用'.'
作为当前文件夹,
或保存在姊妹文件夹中使用'..'
作为父文件夹:
filepath = fullfile('.', filename)