Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How to write the codings to automatic calculate total of files saved in a folder according to the modified date?
1 回表示 (過去 30 日間)
古いコメントを表示
I am a new learner of Matlab. I have a lists of files saved in a folder with different modified date and time as everyday there will be new files being saved in the same folder, now i would like to calculate the total of files according to the modified date. How to write the codings to automatic calculate everyday according to modified date? the files are in '.spm'.
0 件のコメント
回答 (1 件)
Luis Gomes Perini
2015 年 7 月 14 日
Hi,
the function you need is "dir", which returns a structure with name, date, size of the file:
>> file = dir('name_of_file.spm')
then you can access file.date and use it in your code.
Cheers
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!