基本上,您需要 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类
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)