Click here to Skip to main content
15,888,733 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I need to give the functionality select a file in a folder shown in component like folder browser. But windows default folder browser only allows to select folder, not the files in a folder. How can I do this.

Thanks in Advance.
Posted

1 solution

FolderBrowserDialog is purely ment for Selecting folders ofcourse.

You are looking for OpenFileDialog.

A little example:

C#
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.Filter = "PDF Files|*.pdf";

if (openFileDialog.ShowDialog() == DialogResult.OK)
{
   string filePath = openFileDialog.FileName;
}


the filepath string now contains the full path to the file you have selected and you can let your own code loose upon it :)

Good luck!
 
Share this answer
 
v3
Comments
vernon1 27-Feb-13 7:03am    
Im stuck with the same issue. I want to select multiple files in a folder but only certain file types, how do I do this

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900