Directory.GetFiles: Show only files starting with a numeric value

半城伤御伤魂 提交于 2019-12-01 17:31:17

To get files that start with any numeric value, regardless of the number of digits, you could use a regular expression:

var files = Directory.GetFiles(@"c:\mydir", "*.pdf")
                     .Where(file => Regex.IsMatch(Path.GetFileName(file), "^[0-9]+"));
                     //.ToArray() <-add if you want a string array instead of IEnumerable

There is no way to specify this directly in the search pattern. It's capabilities are pretty limited (mainly supports the * wildcard). The best way to accomplish this is to filter on *.pdf and then use a LINQ query to filter to the ones that start with a digit

Directory
  .GetFiles(@"c:\mydir", "*.pdf")
  .Where(x => Char.IsDigit(Path.GetFileName(x)[0]));
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!