How do I remove all filenames from my cellarray with .m ending, if else how do I save those with .bmp?
1 view (last 30 days)
Show older comments
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?
Accepted Answer
See Also
Categories
Find more on Migrate GUIDE Apps in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!