Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 870603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:30:15+00:00 2026-05-15T10:30:15+00:00

How can I restrict only .cor files to be added to the list. The

  • 0

How can I restrict only .cor files to be added to the list.
The code bellow allows .corx, .corxx, .corxxx to be added to the list.
I only want .cor files. Is that possible?

private void btn_models_Click(object sender, EventArgs e)
{
    DialogResult res = dlg_find_folder.ShowDialog();
    if (res == DialogResult.OK)
    {
        tbx_models.Text = dlg_find_folder.SelectedPath;

        populateChecklist(tbx_models.Text, "cor");
        cbx_all.CheckState = System.Windows.Forms.CheckState.Checked;
    }
}

/// <summary>
/// Function populates the models checklist based on the models found in the specified folder.
/// </summary>
/// <param name="directory">Directory in which to search for files</param>
/// <param name="extension">File extension given without period</param>
private void populateChecklist(String directory, String extension)
{
    clb_run_list.Items.Clear();

    System.Collections.IEnumerator enumerator;
    String mdl_name;

    try
    {
        enumerator = System.IO.Directory.GetFiles(directory, "*." + extension).GetEnumerator();

        while (enumerator.MoveNext())
        {
            mdl_name = parse_file_name((String)enumerator.Current, directory, extension);
            clb_run_list.Items.Add(mdl_name);
        }
    }
    catch
    {
        //above code will fail if the initially specified directory does not exist
        //MessageBox.Show("The specified directory does not exist. Please select a valid directory.");
    }

    return;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T10:30:16+00:00Added an answer on May 15, 2026 at 10:30 am

    Do a check for FileName.EndsWith(extension) before adding to your list?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to restrict my web app so that .txt files can not be
How can I restrict the space that a component takes so that it only
How can I restrict input to a text-box so that it accepts only numbers
How can restrict Lucene.Net to index only these terms that has length greater than
I have a command that I want to restrict only to certain ranks. I'm
How can I restrict access to only xml.php (or if not that then the
Is there any way I can restrict a user to select files from only
Is there any way to restrict that only 2 digits can enter in the
How can I restrict TextBox to accept only capital letters, or for example digits,
How can I restrict my .net based windows application to run only when the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.