码迷,mamicode.com
首页 > Windows程序 > 详细

C# winform 选择文件保存路径

时间:2018-09-29 15:27:05      阅读:525      评论:0      收藏:0      [点我收藏+]

标签:The   erb   分享   style   效果   src   class   nta   event   

winform 点击按钮选择文件保存的路径,效果如下图:

技术分享图片

 

具体代码如下:

     private void button8_Click(object sender, EventArgs e)
        {
            FolderBrowserDialog dialog = new FolderBrowserDialog();
            dialog.Description = "请选择文件路径";

            if (dialog.ShowDialog() == DialogResult.OK)
            {
                string foldPath = dialog.SelectedPath;
                DirectoryInfo theFolder = new DirectoryInfo(foldPath);
                
                //theFolder 包含文件路径

                FileInfo[] dirInfo = theFolder.GetFiles();
                //遍历文件夹                
                foreach (FileInfo file in dirInfo)
                {
                    MessageBox.Show(file.ToString());
                }
            }
        }

 

C# winform 选择文件保存路径

标签:The   erb   分享   style   效果   src   class   nta   event   

原文地址:https://www.cnblogs.com/youmingkuang/p/9723673.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!