I can't copy the files, received unknown error
7 ビュー (過去 30 日間)
古いコメントを表示
I am trying to copy files to a new folder but I have received unknown error. I used similar code before and copyfile command worked well but this time it doesn't. I couldn't figure it out. Could you please help? Thanks in advance
2 件のコメント
採用された回答
Walter Roberson
2021 年 6 月 25 日
% Mean Velocity
filename = sprintf('M1_Normal_T%d_%s_M_Vel.dat',j,word);
allFileInfo = fullfile(start_path,filename);
filename refers to a file that lives under start_path but the filename variable does not include that path information.
copyfile (filename ,fold2);
but there it is being referred to as if it is in the current directory.
3 件のコメント
Walter Roberson
2021 年 6 月 25 日
You have
filename = sprintf('M1_Normal_T%d_%s_M_Vel.dat',j,word);
allFileInfo = fullfile(start_path,filename);
so allFileInfo is already the qualified version of the file name. copyfile(allFileInfo, fold2)
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!