码迷,mamicode.com
首页 > 其他好文 > 详细

创建文件夹

时间:2019-01-08 00:16:58      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:对象   ogre   运用   path   obj   object   pre   ted   folder   

实现效果:

  技术分享图片

知识运用:
  DirectoryInfo类的Create方法

  string对象的EndsWith方法

实现代码:

        private void button1_Click(object sender, EventArgs e)
        {
            FolderBrowserDialog FBDialog = new FolderBrowserDialog();
            if (FBDialog.ShowDialog() == DialogResult.OK)
            { 
                string strPath=FBDialog.SelectedPath;
                if (strPath.EndsWith("\\"))
                    textBox1.Text = strPath;
                else
                    textBox1.Text = strPath + "\\";
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            DirectoryInfo Dinfo = new DirectoryInfo(textBox1.Text+textBox2.Text);
            Dinfo.Create();
        }

  

创建文件夹

标签:对象   ogre   运用   path   obj   object   pre   ted   folder   

原文地址:https://www.cnblogs.com/feiyucha/p/10236621.html

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