Moving Bulk MATLAB file to different folders

1 visualizzazione (ultimi 30 giorni)
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 ....

Risposta accettata

Stephen23
Stephen23 il 24 Gen 2022
Modificato: Stephen23 il 24 Gen 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 Commento
Prasad Joshi
Prasad Joshi il 24 Gen 2022
Modificato: Prasad Joshi il 24 Gen 2022
Thank you Stephen ...The code work and was able to sort also ...

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Startup and Shutdown in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by