Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to browse for folder

Tags:

c#

winforms

I want to design a program contain browse button, where we can browse to the selected folder and open the file inside the folder.

I need a reference and reading where i can solve my problems? Like what methods/class should I use. I'm not prefer reading from MSDN coz hard for me to understand their theories. FYI i'm still beginner in C#.

Thank you very much

P/s: Here are code that I found from internet where u can browse/create new folder. But I dont know why it uses Shell32.dll..

private void button1_Click(object sender, EventArgs e)
{
    string strPath;
    string strCaption = "Select a Directory and folder.";
    DialogResult dlgResult;
    Shell32.ShellClass shl = new Shell32.ShellClass();
    Shell32.Folder2 fld = (Shell32.Folder2)shl.BrowseForFolder(0, strCaption, 0,
        System.Reflection.Missing.Value);
    if (fld == null)
    {
        dlgResult = DialogResult.Cancel;
    }
    else
    {
        strPath = fld.Self.Path;
        dlgResult = DialogResult.OK;
    }
}
like image 307
user147685 Avatar asked Sep 14 '09 08:09

user147685


1 Answers

from msdn

private void button1_Click(object sender, System.EventArgs e)
{
    Stream myStream = null;
    OpenFileDialog openFileDialog1 = new OpenFileDialog();

    openFileDialog1.InitialDirectory = "c:\\" ;
    openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*" ;
    openFileDialog1.FilterIndex = 2 ;
    openFileDialog1.RestoreDirectory = true ;

    if(openFileDialog1.ShowDialog() == DialogResult.OK)
    {
        try
        {
            if ((myStream = openFileDialog1.OpenFile()) != null)
            {
                using (myStream)
                {
                    // Insert code to read the stream here.
                }
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
        }
    }
}
like image 168
Svetlozar Angelov Avatar answered Nov 14 '22 21:11

Svetlozar Angelov