Hi,
You could also use a simple C program like this, you have three times in the file structure.
#include <stdio.h>
#include <sys/stat.h>
#include <errno.h>
/* returning status info on a file */
/* returns last data modification time*/
main(int argc, char *argv[])
{
int e;
struct stat *b;
b = malloc(sizeof(struct stat));
stat(argv[1],b);
printf("%s.%ld\n",argv[1],b->st_mtime);
}