zoukankan      html  css  js  c++  java
  • 2016.2.17文件夹选择框及文件选择框

    string fpth = "";

                OpenFileDialog openFileDialog = new OpenFileDialog();

                openFileDialog.Title = "请选择走向文件";

                openFileDialog.Filter = "文本文件|*.txt";

     

                openFileDialog.RestoreDirectory = true;

                if (openFileDialog.ShowDialog() == DialogResult.OK)

                {

                    fpth = openFileDialog.FileName;

                }

     

                if (fpth == "") return;

    ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

                FolderBrowserDialog folderDlg = new FolderBrowserDialog();

                folderDlg.ShowNewFolderButton = false;

                folderDlg.SelectedPath = Directory.GetCurrentDirectory();

                folderDlg.Description = "选择脚本sql文件存放路径";

                if (folderDlg.ShowDialog() == DialogResult.OK)

                {

                    tb_sqlpath.Text = folderDlg.SelectedPath;

                    Common.APPConfig.GetAPPConfig().SetConfigValue("SqlFilePath", tb_sqlpath.Text);

                }

    同时选多种后缀用;隔开:openFileDialog.Filter = "Excel|*.xls;*.xlsx";

  • 相关阅读:
    ceph集群jewel版本 rbd 块map 报错-故障排查
    基本的Ceph性能测试工具和方法
    dd命令的高级应用
    Ceph recover的速度控制
    Linux mount命令
    Centos7.2:搭建Ceph管理系统Inscope
    rpm --import /etc/pki/rpm-gpg/RPM* 有什么用?
    dd命令的解释
    Playbooks 中的错误处理
    Ansible之Playbooks的when语句
  • 原文地址:https://www.cnblogs.com/mol1995/p/5964958.html
Copyright © 2011-2022 走看看