Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I load a folders files into a ListView?

Tags:

c#

file

listview

I'd like to have a user select a folder with the FolderBrowserDialog and have the files loaded into the ListView.

My intention is to make a little playlist of sorts so I have to modify a couple of properties of the ListView control I'm assuming. What properties should I set on the control?

How can I achive this?

like image 503
Sergio Tapia Avatar asked Dec 13 '22 01:12

Sergio Tapia


1 Answers

Surely you just need to do the following:

    FolderBrowserDialog folderPicker = new FolderBrowserDialog();
    if (folderPicker.ShowDialog() == DialogResult.OK)
    {

        ListView1.Items.Clear();

        string[] files = Directory.GetFiles(folderPicker.SelectedPath);
        foreach (string file in files)
        {

            string fileName = Path.GetFileNameWithoutExtension(file);
            ListViewItem item = new ListViewItem(fileName);
            item.Tag = file;

            ListView1.Items.Add(item);

        }

    }

Then to get the file out again, do the following on a button press or another event:

    if (ListView1.SelectedItems.Count > 0)
    {

        ListViewItem selected = ListView1.SelectedItems[0];
        string selectedFilePath = selected.Tag.ToString();

        PlayYourFile(selectedFilePath);

    }
    else
    {
        // Show a message
    }

For best viewing, set your ListView to Details Mode:

ListView1.View = View.Details;
like image 95
djdd87 Avatar answered Dec 15 '22 14:12

djdd87