How can I load a set of files ordered by date and time?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Patrick
am 31 Okt. 2013
Bearbeitet: sixwwwwww
am 31 Okt. 2013
I know there is a loop that can be written to do this. I have many files ordered by time and date that I would like to load. They are in the following format:
TS2004.07.01.0000.txt
TS2004.07.01.0300.txt
TS2004.07.01.0600.txt ...
TS2004.07.01.2100.txt
TS2004.07.02.0000.txt ...
How can I write the loop so that these files load without me having to manually write out the whole list?
0 Kommentare
Akzeptierte Antwort
sixwwwwww
am 31 Okt. 2013
Bearbeitet: sixwwwwww
am 31 Okt. 2013
Dear Patrick, you can use 'dir' command to get information of all the files in a specific folder as:
files = dir('C:\Users\UserName\Desktop\*.txt'); % Get infotmation of all .txt files on Desktop
names = {files.name}; % Get the name of files and save them in a cell array
Then you can use 'names' to load files easily. I hope it helps. Good luck!
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!