How do I remove all filenames from my cellarray with .m ending, if else how do I save those with .bmp?

조회 수: 2 (최근 30일)
I have saved all filenames in a cell array for a given folder however, I only want it to include the files with ending .bmp.
function filer = filnamn(katalog)
%Ger en cell med de filer som finns i sökta katalog.
filer = dir(katalog);
filer = {filer(~[filer.isdir]).name};
end
How would I go about doing this?
  댓글 수: 2
Stephen23
Stephen23 2021년 2월 26일
"How do I remove all filenames from my cellarray with .m ending, if else how do I save those with .bmp?"
Note that in general code files and data files should be stored separately. Keeping data files off the Search Path will improve MATLAB efficiency when changing directories or adding files.

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

채택된 답변

KSSV
KSSV 2021년 2월 26일
idx = contains(filenames,'.bmp') ;
filenames(idx)

추가 답변 (1개)

Stephen23
Stephen23 2021년 2월 26일
편집: Stephen23 2021년 2월 26일
Change the DIR call to specify the file extension:
filer = dir(fullfile(katalog,'*.bmp'));
This is more efficient than getting the entire file content and then removing some names (e.g using contains).

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by