Moving Bulk MATLAB file to different folders

1 view (last 30 days)
I m moving bulk matlab files to a different folder .For one file I did using Movefile command....Can someone suggest code for loading the file in one go instead of using Movefile command everytime ...Like Case161.mat to case 161 then case163.mat to case 163 so on.....Thank you in advance ....

Accepted Answer

Stephen23
Stephen23 on 24 Jan 2022
Edited: Stephen23 on 24 Jan 2022
P = 'absolute or relative path to where the files are saved':
S = dir(fullfile(P,'*.mat'))
for k = 1:numel(S)
[~,N,~] = fileparts(S(k).name);
D = fullfile(P,N);
F = fullfile(P,S(k).name);
mkdir(D) % optional
movefile(F,D)
end
  1 Comment
Prasad Joshi
Prasad Joshi on 24 Jan 2022
Edited: Prasad Joshi on 24 Jan 2022
Thank you Stephen ...The code work and was able to sort also ...

Sign in to comment.

More Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!