如何在.NET中新建文件夹,删除文件夹
求助:如何在.NET中对文件进行操作
采用Directory.Exists方法
string path=Server.MapPath("/file");
if(!Directory.Exists(path))
{
Directory.CreateDirectory("path");
}
if(Directory.Exists(path))
{
Directory.Delete(path,true); //true为递归删除子文件内容
}
此类使用的命名空间using