How to read files from sub folders in sorted order?

9 vues (au cours des 30 derniers jours)
Parthiban C
Parthiban C le 10 Août 2018
Commenté : Stephen23 le 19 Jan 2022
Sub folder names are something like this. Time_0, Time_0.5, Time_1, Time_2, Time_10. The file name in all the sub folders are same. Matlab sort these folder names in the order Time_0, Time_0.5, Time_1, Time_10, Time_2. But I want the files to be loaded from smallest to largest time. Someone Please help me with this?
  2 commentaires
kondepati sudhir kumar
kondepati sudhir kumar le 7 Nov 2019
the answer by konard and stephen is good but if you sort by time does'nt give good results then you can use this code
d = dir('Time*');
for i=1:length(d)
folder(i,1)=string(d(i).name);
end
t_char = regexp(folder,'\_','split');
ar= str2double(ar);
[~,idx] = sort(ar);
folder = folder(idx);
Stephen23
Stephen23 le 19 Jan 2022
Modifié(e) : Stephen23 le 19 Jan 2022
"the answer by konard and stephen is good but if you sort by time does'nt give good results..."
My answer doesn't just sort by "Time", but sorts by the entire content of the foldernames, incuding the number values.

Connectez-vous pour commenter.

Réponses (2)

Konrad
Konrad le 10 Août 2018
Modifié(e) : Konrad le 10 Août 2018
Hi, one solution would be to convert the time suffix to numeric and sort the numbers:
d = dir('Time*');
n = {d.name};
t_char = regexp(n,'\-?[\d\.]+$','match','once');
t_num = str2double(t_char);
[~,idx] = sort(t_num);
d_sort = d(idx);
Hope this helps. Best, Konrad

Stephen23
Stephen23 le 10 Août 2018
Modifié(e) : Stephen23 le 19 Jan 2022
The simplest solution is to download my FEX submission natsortfiles, which was written to solve exactly the problem that you are having:
There are plenty of examples in the Mfile help, the online documentation, and also in the HTML examples. Note that
  • because the numbers include decimal values you will need to specify the regular expression.
  • because you are sorting foldernames you will need to specify the 'noext' option.
D = 'path where subfolders are';
S = dir(fullfile(D,'Time_*'));
S = natsortfiles(S([S.isdir]),'\d+\.?\d*','noext')
  1 commentaire
Stephen23
Stephen23 le 19 Jan 2022
Example using a cell array:
C = {'Time_0', 'Time_1.5', 'Time_9.5', 'Time_1', 'Time_10', 'Time_2.5'};
D = natsortfiles(C,'\d+\.?\d*','noext')
D = 1×6 cell array
{'Time_0'} {'Time_1'} {'Time_1.5'} {'Time_2.5'} {'Time_9.5'} {'Time_10'}

Connectez-vous pour commenter.

Catégories

En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by