C#选择文件 文件夹

来源:互联网 发布:乐高 t r3x 编程下载 编辑:程序博客网 时间:2024/05/16 15:48
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace TestFolderBrowserDialog{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        private void btnFile_Click(object sender, EventArgs e)        {            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);            }        }        private void btnPath_Click(object sender, EventArgs e)        {            FolderBrowserDialog dialog = new FolderBrowserDialog();            dialog.Description = "请选择文件路径";            if (dialog.ShowDialog() == DialogResult.OK)            {                string foldPath = dialog.SelectedPath;                MessageBox.Show("已选择文件夹:" + foldPath, "选择文件夹提示", MessageBoxButtons.OK, MessageBoxIcon.Information);            }        }        private void btnOpen_Click(object sender, EventArgs e)        {            System.Diagnostics.Process.Start("Explorer.exe","c:\\windows");        }    }

}

转自:http://www.cnblogs.com/szytwo/archive/2012/03/21/2410041.html