From: Peter Knief on
"Jan Simon" <matlab.THIS_YEAR(a)nMINUSsimon.de> wrote in message <h3as7f$mdp$1(a)fred.mathworks.com>...
> Dear Andrey Kazak!
>
> > Could you advice me please on the way to get file creation, modification date and time attributes from MATLAB?
>
> GetFileTime, SetFileTime at least for Windows:
> http://www.mathworks.com/matlabcentral/fileexchange/24671
>
> Kind regards, Jan
Dear Jan & Kazak

I stumbled today about this myself !

Perhaps already solved but for the date you could use :

files=dir(strcat(FullPathToFile,Filename));
last_modified=files.date;

Cheers
Peter