how to read the timestamp of file

13 visualizzazioni (ultimi 30 giorni)
Mary
Mary il 30 Gen 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

Risposta accettata

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

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Data Import and Analysis in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by