Loading
0

c#重新选择文件路径实现方法

技术小学生微信公众号
腾讯云服务器大促销。
华为服务器
c#重新选择文件路径实现方法

FolderBrowserDialog fbdlg = new FolderBrowserDialog();
            fbdlg.Description = "请选择文件路径";

            if (fbdlg.ShowDialog() == DialogResult.OK)
            {
                string foldPath = fbdlg.SelectedPath;
                textBox1.Text = foldPath;
                return;

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

技术小学生微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://blog.tag.gg/showinfo-23-36061-0.html
亲爱的:若该文章解决了您的问题,可否收藏+评论+分享呢?

最后编辑于:2021-06-11 12:56:22作者:

上一篇:c#字符串提取(获取两个字符串中间的字符串)
下一篇:C# Excel表格追加数据方法