Filter löschen
Filter löschen

Read files from folder with specific name

36 Ansichten (letzte 30 Tage)
Kris zenitis
Kris zenitis am 1 Jul. 2014
Kommentiert: Image Analyst am 17 Aug. 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?

Akzeptierte Antwort

Image Analyst
Image Analyst am 1 Jul. 2014
Files=dir('word*.*');
  7 Kommentare
Ihaveaquest
Ihaveaquest am 16 Aug. 2022
what if there are multiple files with similar name but you only want the most current created ??
Image Analyst
Image Analyst am 17 Aug. 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)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu File Operations finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

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

Start Hunting!

Translated by