如何使用OpenFileDialog选择文件夹?

如何使用OpenFileDialog选择文件夹?,第1张

如何使用OpenFileDialog选择文件夹

基本上,您需要

FolderBrowserDialog
上课:

提示用户选择一个文件夹。这个类不能被继承。

例:

using(var fbd = new FolderBrowserDialog()){    DialogResult result = fbd.ShowDialog();    if (result == DialogResult.OK && !string.IsNullOrWhiteSpace(fbd.SelectedPath))    {        string[] files = Directory.GetFiles(fbd.SelectedPath);        System.Windows.Forms.MessageBox.Show("Files found: " + files.Length.ToString(), "Message");    }}

如果您在 WPF中 工作,则必须添加对的引用

System.Windows.Forms

你还必须添加

using System.IO
Directory



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5567516.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存