C#打开文件、文件夹
打开文件
这里有多种打开文件的方式,其中比较常用的一种是使用.Freamework提供的OpenFileDialog对话框来实现。其中openFileDialog对话框可以在布局中初始化,也可以在代码中新建。
private void add_Click(object sender, EventArgs e)
{
//OpenFileDialog openFileDialog1=new OpenFileDialog();//如果没有在布局中使用则在代码中需要使用该句来新建一个打开文件对话框。
openFileDialog1.Multiselect = true;
openFileDialog1.Title = "请选择文件";
openFileDialog1.Filter = "exe执行文件(*.exe)|*.exe|所有文件(*.*)|*.*";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
string file = openFileDialog1.FileName;
MessageBox.Show("已选择文件:" + file, "选择文件提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}