WPF本身並沒有相關的類,需要引用winform的命名空間
System.Windows.Forms
獲取文件夾路徑
System.Windows.Forms.FolderBrowserDialog m_Dialog = new System.Windows.Forms.FolderBrowserDialog();
System.Windows.Forms.DialogResult result = m_Dialog.ShowDialog();
if (result == System.Windows.Forms.DialogResult.Cancel)
{
return;
}
string m_Dir = m_Dialog.SelectedPath.Trim();
獲取指定文件
using Microsoft.Win32;
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.Title = "選擇數據源文件";
openFileDialog.Filter = "txt文件|*.txt|rar文件|*.rar|所有文件|*.*";
openFileDialog.FileName = string.Empty;
openFileDialog.FilterIndex = 1;
openFileDialog.Multiselect = false;
openFileDialog.RestoreDirectory = true;
openFileDialog.DefaultExt = "txt";
if (openFileDialog.ShowDialog() == false)
{
return;
}
string txtFile = openFileDialog.FileName;