vote up 2 vote down star
1

What's the best way to allow a user to browse for a file in C#?

flag

80% accept rate

5 Answers

vote up 12 vote down check
using (OpenFileDialog dlg = new OpenFileDialog())
{
    dlg.Title = "Select a file";
    if (dlg.ShowDialog()== DialogResult.OK)
    {
        //do something with dlg.FileName  
    }
}
link|flag
vote up 0 vote down

FileDialog

link|flag
vote up 1 vote down

I would say use the standard "Open File" dialog box (OpenFileDialog), this makes it less intimidating for new users and helps with a consistant UI.

link|flag
vote up 1 vote down

Close, Ryan, but you never showed the dialog. it should be:

if (dlg.ShowDialog() == DialogResult.OK)
link|flag
vote up 0 vote down

Close, Ryan, but you never showed the dialog.

Hehe, I typed it too quickly and edited that after posting.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.