.NET中动态的创建新的文件夹

protected void btn_Click(object sender, EventArgs e)
    {
        string name = this.txtbName.Text;//文件夹名称
        string path = Server.MapPath("~\\"+name);

   //存在以txtbName命名的文件夹,则删除
         if (Directory.Exists(path))
        {
            Directory.Delete(path, true); //true为递归删除子文件内容
            Response.Write("现在没有了");
        }    

     //不存在,则创建 
        else if (!Directory.Exists(path))
        {
            Directory.CreateDirectory(path);
            Response.Write("有了");
        }
    }

posted on 2010-04-06 21:05  pwm_1987  阅读(265)  评论(0编辑  收藏  举报

导航