Any command that allows to see any file's last modification date?

42 次查看(过去 30 天)
Hello, I would need a Matlab command that allows me to see the last date of modification of my files: that would be needed by me to be able to create a routine that select files whose saving in a repository server is suggested. Thanks for your answers!

采纳的回答

Neha
Neha 2023-4-4
It is my understanding that you need to find the last modified date of a given file. You can refer the code given below.
dnum=dir(fileName).datenum; % Modification Date as serial number
dtime=datetime(dnum,'ConvertFrom','datenum');
Please refer to the list folder contents documentation for more information on examples and arguments of the dir command.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 File Operations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by