Filter a directory and add in listbox only files with TIF/TIFF and containing a certain String

조회 수: 11 (최근 30일)
Hello, I am trying to list all tif images ina folder into a listbox. I have it working but am trying to now only list those tif files that also contain a string in their name:
I initially choose the first file (using uigetfile so have the extension, path and filename)
%List all tif images into the list box.
[pathstr,name,ext] = fileparts(openpath);
filePattern = fullfile(pathstr, ['*',ext])
myFiles = dir(filePattern);
ListOfImageNames = {}; % Initialize
for Index = 1:length(myFiles)
% Get the base filename and extension.
baseFileName = myFiles(Index).name;
[folder, name, extension] = fileparts(baseFileName);
% Examine extensions for ones we want.
extension = upper(extension);
switch lower(extension)
case {'.tif','.tiff'}
% Keep only JPG, TIF, or tiff image files.
ListOfImageNames = [ListOfImageNames baseFileName];
% otherwise
end
end
% Now we have a list of validated filenames that we want.
% Send the list of validated filenames to the listbox. %ListOfImageNames;
app.ListBox.Items=ListOfImageNames;
So I thought if I have a string 'NameFilter', then all I need to do is change
filePattern = fullfile(pathstr, ['*',ext])
To
filePattern = fullfile(pathstr, [Namefilter,'*',ext])
But its not quite working. so to summarise, I only want tiff files which contain the string NameFilter
Thanks
Jason

채택된 답변

Walter Roberson
Walter Roberson 2021년 2월 7일
pathstr = fileparts(openpath);
myFiles = dir(pathstr);
filenames = {myFiles.name};
mask = endsWith(filenames, {'.tif', '.tiff'}, 'IgnoreCase', true);
ListOfImages = filenames(mask);
  댓글 수: 2
Jason
Jason 2021년 2월 7일
편집: Jason 2021년 2월 7일
So simple! Thankyou
Ajh, the only thing is that the string I want the files to contain (Namefilter) is always at the front of the string
Walter Roberson
Walter Roberson 2021년 2월 7일
mask = mask & beginsWith(filenames, Namefilter);
With or without the 'IgnoreCase' option as appropriate.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by