Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# - Getting file names starting with a specific format in a directory

Tags:

c#

regex

file

I've a directory with tons of files and I want only to get the names of the ones starting with sly_.

If I'm not wrong, the patter for this is ^sly_.

This is my try using the solution of this question:

    string pattern = @"^sly_";
    var matches = Directory.GetFiles(@"D:\mypath").Where(path => Regex.Match(path, pattern).Success);

    foreach (string file in matches)
        Console.Write(file); 

Unfortunatelly, this doesn't list the files matching my pattern. So, can someone tell me what's wrong with me code and how can I list the file names starting with sly_?

Thanks in advance.

like image 590
Avión Avatar asked Nov 09 '15 13:11

Avión


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr. Stroustroupe.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

How old is the letter C?

The letter c was applied by French orthographists in the 12th century to represent the sound ts in English, and this sound developed into the simpler sibilant s.


1 Answers

If you insist on regular expression you should test FileName, not the entire path:

  string pattern = @"^sly_";

  var matches = Directory
    .GetFiles(@"D:\mypath")
    .Where(path => Regex.IsMatch(Path.GetFileName(path), pattern));

  Console.Write(String.Join(Environment.NewLine, matches));
like image 54
Dmitry Bychenko Avatar answered Oct 04 '22 21:10

Dmitry Bychenko