Read files from folder with specific name
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kris zenitis
el 1 de Jul. de 2014
Comentada: Image Analyst
el 17 de Ag. de 2022
I am using the following code to read all files from a folder:
Files=dir('*');
for k=1:length(Files)
FileNames=Files(k).name;
end
However I want to read the files which names begin with "word" not just all files in folder. How can I perform such task?
0 comentarios
Respuesta aceptada
Image Analyst
el 1 de Jul. de 2014
Files=dir('word*.*');
7 comentarios
Ihaveaquest
el 16 de Ag. de 2022
what if there are multiple files with similar name but you only want the most current created ??
Image Analyst
el 17 de Ag. de 2022
@Ihaveaquest, to find the newest file, do this:
fileList = dir('t*.m')
fileDates = [fileList.datenum]
% Find newest file
[maxDate, index] = max(fileDates)
fprintf('The newest file is:\nName: %s\nDate: %s\n', ...
fileList(index).name, fileList(index).date)
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Import and Analysis 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!