Read files from folder with specific name

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?

 Respuesta aceptada

Image Analyst
Image Analyst el 1 de Jul. de 2014
Files=dir('word*.*');

7 comentarios

Reema Alhassan
Reema Alhassan el 24 de Mayo de 2018
hey but here we didn't specify the folder name is that ok?
Yes, it will use files in the current folder. If you want them in a particular folder, you can do
folder = pwd; % or 'D:\my Images\Reema' or wherever...
filePattern = fullfile(folder, 'word*.*');
fileList = dir(filePattern);
Hassan Mehmood Khan
Hassan Mehmood Khan el 25 de Jul. de 2020
Thank you
it was very helpful
sania urooj
sania urooj el 13 de Feb. de 2021
hey! I want to read files (mat) also, the name of the folder (label) . What to do?
Image Analyst
Image Analyst el 13 de Feb. de 2021
@sania urooj, I'm not sure what names you have and what you want. Why can't you just change the filePattern wildcard to be what you want???
Ihaveaquest
Ihaveaquest el 16 de Ag. de 2022
what if there are multiple files with similar name but you only want the most current created ??
@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)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre File Operations en Centro de ayuda y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Preguntada:

el 1 de Jul. de 2014

Comentada:

el 17 de Ag. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by