Как найти папку - PullRequest
       26

Как найти папку

6 голосов
/ 14 сентября 2009

Я хочу создать программу, содержащую кнопку обзора, где мы можем перейти к выбранной папке и открыть файл внутри папки.

Мне нужна ссылка и чтение, где я могу решить свои проблемы? Как то, какие методы / класс я должен использовать. Я не предпочитаю читать из MSDN, потому что мне трудно понять их теории. К вашему сведению, я все еще новичок в C #.

Большое спасибо

P / s: вот код, который я нашел в интернете, где вы можете просматривать / создавать новые папки. Но я не знаю, почему он использует 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;
    }
}

Ответы [ 4 ]

10 голосов
/ 14 сентября 2009

из 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);
        }
    }
}
4 голосов
/ 25 апреля 2016
            string folderpath = "";
            FolderBrowserDialog fbd = new FolderBrowserDialog();

            fbd.ShowNewFolderButton = false;
            fbd.RootFolder = System.Environment.SpecialFolder.MyComputer;
            DialogResult dr = fbd.ShowDialog();

            if (dr == DialogResult.OK)
            {
                folderpath = fbd.SelectedPath;
            }

            if (folderpath != "")
            {
                txtBoxPath.Text = folderpath; 
            }
2 голосов
/ 09 сентября 2014

Из панели инструментов перетащите компонент FolderBrowserDialog в форму и назовите его folderBrowserDialog. В обработчике событий кнопки обзора введите следующий код.

    private void btnBrowseBackupLocation_Click(object sender, EventArgs e)
    {
        DialogResult result = folderBrowserDialog.ShowDialog();
        if (result == DialogResult.OK)
        {
            txtboxBackupLocation.Text = folderBrowserDialog.SelectedPath;
        }
    }
0 голосов
/ 15 июля 2013

Чтобы вставить путь к файлу при нажатии кнопки с именем «Browse_Button» с именем файла в текстовом поле с именем «ARfilePath», указанный выше код будет изменен как:

    private void Browse_Button_Click(object sender, 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;
        Boolean FileExist=openFileDialog1.CheckFileExists;
        Boolean PathExist=openFileDialog1.CheckPathExists;
        openFileDialog1.FileName = null;
        if (openFileDialog1.ShowDialog() == DialogResult.OK)
        {
            try
            {
                if ((myStream = openFileDialog1.OpenFile()) != null)
                {
                    using (myStream)
                    {
                        if (FileExist == true && PathExist == true)
                        {
                            // Insert code to read the stream here.
                            string Pathname = openFileDialog1.FileName;
                            ARfilePath.Text = Pathname;
                            ARfilePath.Enabled = false;
                            /*DISABLED SO THAT THE USER CANNOT MAKE UNNECESSARY CHANGES IN THE FIELD*/
                        }
                    }
                }
            }
            catch (Exception ex)
            {

                /*SHOW ERRORS TO USER*/ error_label.Text = "Error: Could not read file from disk. Original error: " + ex.Message;

                //MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
            }
        }
    }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...