How to find files according RegEx in C#
Posted
by bao
on Stack Overflow
See other posts from Stack Overflow
or by bao
Published on 2010-05-11T09:51:40Z
Indexed on
2010/05/11
9:54 UTC
Read the original article
Hit count: 313
I need to get list of files on some drive with paths that matches specific pattern, for example FA\d\d\d\d.xml where \d is digit (0,1,2..9). So files can have names like FA5423.xml.
What is the most efficient name to do this?
© Stack Overflow or respective owner