Users Pricing

forum

home / developersection / forums / can you call directory.getfiles() with multiple filters?

Can you call Directory.GetFiles() with multiple filters?

Anonymous User 4039 14 Nov 2013

I am trying to use the Directory.GetFiles() method to retrieve a list of files of multiple types, such as mp3's and jpg's. I have tried both of the following with no luck:

Directory.GetFiles("C:\\path", "*.mp3|*.jpg", SearchOption.AllDirectories);

Directory.GetFiles("C:\\path", "*.mp3;*.jpg", SearchOption.AllDirectories);

Is there a way to do this in one call?


I am a content writter !


1 Answers