.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("有了");
}
}