Select Folder Path with savefileDialog

前端 未结 2 1781
耶瑟儿~
耶瑟儿~ 2020-12-31 05:23

Is there a way to using a dialog window to get the folder path without name file?

2条回答
  •  一整个雨季
    2020-12-31 05:52

    Check the FolderBrowserDialog

    // Bring up a dialog to chose a folder path in which to open or save a file.
    private void folderMenuItem_Click(object sender, System.EventArgs e)
    {
        var folderBrowserDialog1 = new FolderBrowserDialog();
    
        // Show the FolderBrowserDialog.
        DialogResult result = folderBrowserDialog1.ShowDialog();
        if( result == DialogResult.OK )
        {
            string folderName = folderBrowserDialog1.SelectedPath;
            ... //Do your work here!
        }
    }
    

提交回复
热议问题