C# 选择文件路径,选择文件

// 选择文件:
private string SelectPath()
{
    string path = string.Empty;
    var openFileDialog = new Microsoft.Win32.OpenFileDialog()
    {
        Filter = "Files (*.*)|*.*"//如果需要筛选txt文件("Files (*.txt)|*.txt")
    };
    var result = openFileDialog.ShowDialog();
    if (result == true)
    {
        path = openFileDialog.FileName;
    }
    return path
}
// 选择路径
private string SelectPath()
{
    string path = string.Empty;
    System.Windows.Forms.FolderBrowserDialog fbd = new System.Windows.Forms.FolderBrowserDialog();
    if (fbd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
    {
        path = fbd.SelectedPath;
    }
    return path;
}

 

posted @ 2016-11-04 18:09  xiao贝  阅读(30382)  评论(2编辑  收藏  举报