怎么用C#的OpenFileDialog打开一个文件夹,而不是文件
2个回答
展开全部
private void button1_Click(object sender, EventArgs e)
{
FolderBrowserDialog dialog = new FolderBrowserDialog();
dialog.Description = "please select the folder path";
if (dialog.ShowDialog() == DialogResult.OK)
{
string foldPath = dialog.SelectedPath;
System.Diagnostics.Process.Start("Explorer.exe", foldPath);
}
}
{
FolderBrowserDialog dialog = new FolderBrowserDialog();
dialog.Description = "please select the folder path";
if (dialog.ShowDialog() == DialogResult.OK)
{
string foldPath = dialog.SelectedPath;
System.Diagnostics.Process.Start("Explorer.exe", foldPath);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询