read file in folder with multiple files with similar names
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ihaveaquest
el 16 de Ag. de 2022
Comentada: Ihaveaquest
el 22 de Ag. de 2022
file_name = dir('*.rpt*');
------------------
some where in here would like code that picks the file with latest data
file name 'data_20220804_0211.rpt'
-----------------------------
file = fopen(file_name.name, 'r');
L = textscan(fileID,'%s %s %s %s %s %s %s %s %s %s %s %s %s %s %s %s');
report_size = size(L);
0 comentarios
Respuesta aceptada
Walter Roberson
el 17 de Ag. de 2022
In the restricted case that the files are being generated dynamically, then
dinfo = dir('*.rpt*');
[~,newest_idx] = max(datetime({dinfo.date}))
newest_filename = dinfo(newest_idx).name;
What this is doing is looking at the modification date information recorded for each of the files, and picking out the newest one.
In the case where the files might have been sitting around for a while, or might have been transferred between directories, then the modification date becomes less reliable, and you have to start processing the date information
dinfo = dir('*.rpt*');
rawnames = {dinfo.name};
datenames = regexprep(rawnames, '^.*_(\d{8})_(\d{4})\..*$', '$1 $2');
%any name that is not exactly 13 characters is a name that did not follow
%the pattern and we cannot parse.
mask = cellfun(@length, datenames) == 13;
rawnames = rawnames(mask);
datenames = datenames(mask);
filetimes = datetime(datenames);
[~, maxidx] = max(filetimes);
newest_filename = rawnames{maxidx};
5 comentarios
Walter Roberson
el 18 de Ag. de 2022
It turns out that in POSIX, file modification times are recorded as time_t which is (full) seconds since a particular time. So resolution down to one second is all that you can get from a file timestamp. Both datetime() and serial date number are able to resolve down to 1 second without problem.
It is potentially possible that the datenum version might vary by about 10 microseconds from the datetime version.
It is possible that the two might differ in interpretation of leap seconds.
It is possible that the two might differ about timezone when formatted.
It is possible that the two might differ about daylight time when formatted.
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Type Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!