c#winform选择文件/文件夹/打开指定目录方法

选择文件夹

        private void btnSelete_Click(object sender, EventArgs e)
        {
            FolderBrowserDialog dialog = new FolderBrowserDialog();
            dialog.Description = "请选择文件路径";            if (dialog.ShowDialog() == DialogResult.OK)
            {
                lblSelete.Text = dialog.SelectedPath;
            }
        }

打开文件夹

            //打开文件夹
            System.Diagnostics.Process.Start("explorer.exe", lblSelete.Text+@"");

选择文件

OpenFileDialog fileDialog = new OpenFileDialog();
fileDialog.Multiselect = true;
fileDialog.Title = "请选择文件";
fileDialog.Filter="所有文件(*.*)|*.*";if (fileDialog.ShowDialog() == DialogResult.OK)
{string file=fileDialog.FileName;
MessageBox.Show("已选择文件:" + file,"选择文件提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
}


·关于我们·免责声明·服务条款·RSS订阅·dede168.com技术支持

Copyright © 1998-2015  All rights reserved.