首页 > 代码库 > openFileDialog的使用

openFileDialog的使用

    这两天应用了一下openFileDialog,做的是上传的功能,在打开页面的时候进行的一系列操作虽说远远没有asp.net的上传控件好使,但是学习起来也是蛮还用的,下面是一个简单的应用

//点击浏览按钮的单击事件 private void button1_Click(object sender, EventArgs e) { try {      //在浏览的时候只显示后缀为db的文件      openFileDialog1.Filter = "数据库文件|*.db";      if (openFileDialog1.ShowDialog() == DialogResult.OK)      //获取导入      {      //在点击浏览按钮的时候,旋转那个文件的路径       fileName = openFileDialog1.FileName;      //将上面获取到的路径放在文本框中       textBox1.Text = fileName;      //获取选中的文件名       string Name = fileName.Substring(fileName.LastIndexOf(\\) + 1);     }     else     return;    } catch (Exception ex) {     MsgBox.Err("读取数据是出现错误,请检查文件重新读取数据"); }}  
View Code