Click here to Skip to main content
15,885,980 members
Articles / Web Development / ASP.NET

Get File Names of a Particular File Type using LINQ

26 Feb 2014CPOL1 min read 36.1K   16   10
This is a simple trick to find file names of a particular file type existing in a folder.

This is a simple trick to find File Names of a particular File Type existing in a Folder.

Background

Suppose you want to find the File Names of the CSV Files in a folder. So, you need to exclude all other files and consider the CSV Files only. This was implemented in one of my projects, where all the CSV File Names from a folder got populated in a DropDownList.

Let’s Explore

So, the main thing here is to find a particular type of File. For that, I used the following code:

C#
DirectoryInfo di = new DirectoryInfo(folderPath);

// Get only the CSV files.
List<string> csvFiles = di.GetFiles("*.csv")
                          .Where(file => file.Name.EndsWith(".csv"))
                          .Select(file => file.Name).ToList();

Here, I have used DirectoryInfo.GetFiles Method (String).

Returns a file list from the current directory matching the given search pattern.

So, di.GetFiles(“*.csv”) would give us a list of all the CSV Files in that folder.

  • Here *.csv is the SearchPattern and * means any string before .csv.
  • Now, Where Clause is used to make sure that File Extension ends with .csv and nothing else.

Then, we are selecting the File Names by Select clause like Select(file => file.Name).

Note

You can apply this trick to find any File Type. You just need to change the SearchPattern accordingly. If you wish to find pdf files, then it would be di.GetFiles("*.pdf").

Full Code

I have used another Where condition here as per the requirements to exclude the CSV Files, having _something in their File Names.

C#
/// <summary>
/// This function Populates CSV File Names on a DropDownList.
/// </summary>
private void PopulateCSVFilesDropDownList()
{
    try
    {
        string folderPath = GetFolderPath();

        if (!string.IsNullOrEmpty(folderPath))
        {
            if (Directory.Exists(folderPath))
            {
                DirectoryInfo di = new DirectoryInfo(folderPath);

                // Get only the CSV files excluding the ones having 
                // "_something" appended to them.
                List<string> csvFiles = di.GetFiles("*.csv")
                                          .Where(file => file.Name.EndsWith(".csv") &&
                                                         !file.Name.Contains("_something"))
                                          .Select(file => file.Name).ToList();

                // Bind the DropDown and add one default option at the top.
                ddlCSVFiles.DataSource = csvFiles;
                ddlCSVFiles.DataBind();
                ddlCSVFiles.Items.Insert(0, new ListItem("Please select a file", "-1"));
            }
            else
            {
                // DropDownList is hided and Error message is displayed.
                ddlCSVFiles.Visible = false;
                lblErrorMessage.Visible = true;
                lblErrorMessage.Text = "Folder Does not Exist.";
            }
        }
    }
    catch (Exception ex)
    {
        // Exception is displayed on a Label.
        lblErrorMessage.Visible = true;
        lblErrorMessage.Text = ex.Message;
    }
}

/// <summary>
/// This function returns the Folder Path from web.config, 
/// which contains different type of Files. 
/// </summary>
/// <returns>string: Folder Path</returns>
private string GetFolderPath()
{
    // For Example - D:\Projects\SomeProject\SomeFolder
    return (ConfigurationManager.AppSettings != null && 
            ConfigurationManager.AppSettings["FolderPath"] != null) ?
            ConfigurationManager.AppSettings["FolderPath"].ToString() :
            string.Empty;
}

Update

  • 27th February, 2014 - Added an extra condition in LINQ to check if File Name ends with .csv only and nothing else

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Proud Indian | Author | TEDx Speaker | Microsoft MVP | CodeProject MVP | Speaker | DZone Most Valuable Blogger| jsfiddler

My Website

taditdash.com

Programming Community Profiles

jsfiddle | Stack Overflow

Social Profiles

Facebook | Twitter | LinkedIn

Awards


  1. DZone Most Valuable Blogger
  2. Microsoft MVP 2014, 2015, 2016, 2017, 2018
  3. Code Project MVP 2014, 2015, 2016
  4. Star Achiever of the Month December 2013
  5. Mindfire Techno Idea Contest 2013 Winner
  6. Star of the Month July 2013

Comments and Discussions

 
GeneralDon't use GetFiles Pin
PaulLinton3-Mar-14 12:01
PaulLinton3-Mar-14 12:01 
AnswerRe: Don't use GetFiles Pin
Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)6-Mar-14 21:03
protectorTadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)6-Mar-14 21:03 
QuestionStrange omission Pin
alex2001_ts28-Feb-14 7:26
professionalalex2001_ts28-Feb-14 7:26 
AnswerRe: Strange omission Pin
Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)2-Mar-14 19:12
protectorTadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)2-Mar-14 19:12 
GeneralNot only CSV but also CSV* Pin
sditt26-Feb-14 1:09
sditt26-Feb-14 1:09 
AnswerRe: Not only CSV but also CSV* Pin
Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)26-Feb-14 20:09
protectorTadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)26-Feb-14 20:09 
GeneralRe: Not only CSV but also CSV* Pin
spencepk10-Oct-14 9:45
spencepk10-Oct-14 9:45 
GeneralRe: Not only CSV but also CSV* Pin
Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)10-Oct-14 17:49
protectorTadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)10-Oct-14 17:49 
GeneralRe: Not only CSV but also CSV* Pin
spencepk11-Oct-14 3:17
spencepk11-Oct-14 3:17 
GeneralRe: Not only CSV but also CSV* Pin
Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)11-Oct-14 3:42
protectorTadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)11-Oct-14 3:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.