0
我有很多文件,我想通過包括文件的創建日期來編輯所有名稱。使用文件的創建日期並將其添加到matlab中的文件的名稱
這是我有這麼遠,但它不工作:
a='c:\test_for_namn_andring\*.*';
file_info=dir('c:\test_for_namn_andring\*.*');
names={file_info.name};
dates={file_info.date};
for i=3:length(names)
oldfilename = names;
newfilename = (strcat(names(1,3:end), dates(1,3:end)));
newfilename = fullfile(a, newfilename);
movefile(fullfile(a,oldfilename{i}),newfilename);
end
我得到錯誤使用movefile的錯誤 沒有找到匹配的文件。 – user531225 2012-08-14 12:02:00
按照預期工作,請學習調試:http://www.mathworks.nl/help/techdoc/matlab_prog/f10-60570.html和http://blogs.mathworks.com/videos/2012/07/03 /調試功能於MATLAB / – 2012-08-14 12:15:40