dir search multiple files

Hello,
I am using the dir command to search a folder for specific file types. I am looking for both *.jpg and *.png files. How do I structure my statement so that I can search for both file types?

Antworten (1)

Fangjun Jiang
Fangjun Jiang am 19 Sep. 2011

7 Stimmen

Files=[dir('*.jpg');dir('*.png')]

3 Kommentare

Walter Roberson
Walter Roberson am 19 Sep. 2011
I think that might be the only option on MS Windows.
On OS-X or Linux there might be an additional more obscure method,
dir('*.{jpg,png}')
This should NOT be expected to work on MS Windows.
Michael
Michael am 10 Sep. 2014
I know this is an old link, but it totally saved me. Thanks!
Steve Grobler
Steve Grobler am 9 Mär. 2018
helped me too!!

Melden Sie sich an, um zu kommentieren.

Kategorien

Tags

Gefragt:

am 19 Sep. 2011

Kommentiert:

am 9 Mär. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by