string defaultPath = ""; FolderBrowserDialog dialog = new FolderBrowserDialog(); //打开的文件夹浏览对话框上的描述 dialog.Description = "请选择一个文件夹"; //是否显示对话框左下角 新建文件夹 按钮,默认为 true dialog.ShowNewFolderButton = false; //首次defaultPath为空,按FolderBrowserDialog默认设置(即桌面)选择 if (defaultPath != "") { //设置此次默认目录为上一次选中目录 dialog.SelectedPath = defaultPath; } //按下确定选择的按钮 if (dialog.ShowDialog() == DialogResult.OK) { //记录选中的目录 defaultPath = dialog.SelectedPath; } MessageBox.show(defaultPath);本文固定链接:http://www.itechzero.com/coding/c-cpp-csharp/c-sharp-folderbrowserdialog-usage/,转载请注明出处。
C# FolderBrowserDialog 的用法,布布扣,bubuko.com
原文地址:http://blog.csdn.net/techzero/article/details/27519785