Finding files WITHOUT a specfic prefix (or suffix, extension, etc.) using dir

43 次查看(过去 30 天)
Hello all, I have a question partly inspired by the question here, which asks how to find a file with a known prefix. Now, what if I want to suppress a specific prefix, but not use more complicated strfind (although I could use startsWith) operation using the 'dir' command. The obvious example is avoiding all files starting with a period: '.example.txt'.
Is there a simple way to suppress certain prefixes using 'dir'? How about suppressing suffixes or extensions (rather than exhaustively looking for the extensions you do want)?

采纳的回答

Guillaume
Guillaume 2018-7-3
No, the filtering capabilities offered by dir are fairly limited. If you want to exclude some pattern, you'll have to get the whole list then use string search functions such as startsWith you've mentioned or regexp. It's only one more line of code so shouldn't be any issue.
e.g. to remove all files starting with .
filelist = dir;
filelist = filelist(~startsWith({filelist.name}, '.''));

更多回答(0 个)

类别

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