How to sort the files in a folder by date?

117 ビュー (過去 30 日間)
Salad Box
Salad Box 2019 年 1 月 31 日
コメント済み: J Tian 2020 年 11 月 9 日
Hi,
For example, I have 3 image files in a folder, looks like below (Fig 1).
10.png
I then tried to get the information of the image files by:
startpath=pwd;
>> list=dir(startpath);
I get (Fig 2):
11.png
I wonder how can I sort the files in the list (excluding the top two '.' and '..') by date (from early to late)?

採用された回答

Stephen23
Stephen23 2019 年 1 月 31 日
編集済み: Stephen23 2019 年 1 月 31 日
S = dir(...);
S = S(~[S.isdir]);
[~,idx] = sort([S.datenum]);
S = S(idx)
  3 件のコメント
Anupam Parlikar
Anupam Parlikar 2019 年 9 月 12 日
This works. Thank you!
J Tian
J Tian 2020 年 11 月 9 日
Thanks

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by