【winform学习】:获取文件路径

OpenFileDialog of1 = new OpenFileDialog();
          
           if (of1.ShowDialog() == DialogResult.OK)
           {
               textBox1.Text = of1.FileName;
           }

FileStream fs1 = new FileStream(textBox1.Text, FileMode.Open, FileAccess.Read);
            StreamReader sw1 = new StreamReader(fs1);
            textBox2.Text = sw1.ReadToEnd();
            sw1.Close();
            fs1.Close();

(如有问题到博主网站 wuchao.net 或 wuchao.cnblogs.com 留言)
posted @   Uoolo  阅读(583)  评论(1编辑  收藏  举报
点击右上角即可分享
微信分享提示