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

前端 未结 26 2771
逝去的感伤
逝去的感伤 2020-11-22 05:25

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 t

26条回答
  •  春和景丽
    2020-11-22 05:59

    I know it's old question but LINQ: (.NET40+)

    var files = Directory.GetFiles("path_to_files").Where(file => Regex.IsMatch(file, @"^.+\.(wav|mp3|txt)$"));
    

提交回复
热议问题