how to read the timestamp of file

13 vues (au cours des 30 derniers jours)
Mary
Mary le 30 Jan 2013
I have 10 files with extention (.csv). I need to read the timestamp of each file (unix timestamp) and save them in one column in text file. Any help is greatly appreciated

Réponse acceptée

Jan
Jan le 30 Jan 2013
Modifié(e) : Jan le 30 Jan 2013
Do you mean the date of the last file access?
D = dir('*.xls');
TimeStamp = {D.date};
% Or:
TimeStamp = [D.datenum];
  7 commentaires
Mary
Mary le 6 Fév 2013
Hi Jan. Thanks again. Do you know how I can get the filename suffice?
Jan
Jan le 6 Fév 2013
What does "the filename suffice" mean?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Import and Analysis dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by