If I have a logical vector created by ISDIR attribute of DIR, how to have its order by the date of the last modification of folders???

9 vues (au cours des 30 derniers jours)
d = dir('D:\= BIO-PD =');
isub = [d(:).isdir]; %# returns logical vector
nameFolds = {d(isub).name}';
In nameFolds I have a cell array with the names of folders contained in 'D:\= BIO-PD ='.
The problem is I need to have nameFolds sorted by the date of the last change of the folders, as it is located in the real folder.
  2 commentaires
Walter Roberson
Walter Roberson le 1 Déc 2019
Look at the second output of sort, and use that to reorder the other content
Kapa Kudaibergenov
Kapa Kudaibergenov le 1 Déc 2019
Can you explain me how we use it in this case? Do you mean to use it like:
[B,I] = sort(nameFolds)

Connectez-vous pour commenter.

Réponse acceptée

Stephen23
Stephen23 le 1 Déc 2019
Modifié(e) : Stephen23 le 1 Déc 2019
Simpler and much more robust:
S = dir('D:\= BIO-PD =');
S = S([S.isdir] & ~ismember({S.name},{'.','..'})); % folders only, exclude '.' and '..'
[~,X] = sort([S.datenum]); % sort datenum
N = {S(X).name} % folder names in datenum order

Plus de réponses (1)

Image Analyst
Image Analyst le 1 Déc 2019
Try this.
files = dir('*.*')
areAFolder = [files.isdir]
files = files(areAFolder) % Get folders only, not files.
% Get rid of dot and dot dot folders.
if length(files) >= 3
% Assume they are the first two entries. Remove them.
files = files(3:end);
% % OR Alternate way that does not depend on them being the first two. Comment out the line above if you use this method.
% [ia, ib] = ismember({'..'}, {files.name})
% files(ib) = [];
% [ia, ib] = ismember({'.'}, {files.name})
% files(ib) = [];
end
[fileDates, sortOrder] = sort([files.datenum], 'descend') % or 'ascend' - whatever you want.
folders = files(sortOrder)
Adapt as needed.
  7 commentaires
Image Analyst
Image Analyst le 2 Déc 2019
I think if you sorted by date before removing the dot and dot dot, then they should always be the first two in the list, because as far as I know they must always be the oldest (unless it's something to do with Windows multiple dates policy). That's what I had intended to do, but didn't. But of course checking the name directly is more robust.
Walter Roberson
Walter Roberson le 2 Déc 2019
The field returned by dir() is modification date, and modification date of a directory reflects the most recent time a file was added or removed from the directory. That would tend to sort . at the end possibly some distance from ..

Connectez-vous pour commenter.

Catégories

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

Tags

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by