ASp.net判断文件或文件夹是否存在

一:判断文件夹是否存在 不存在即新增

string filepath = "~/upload/filemanager/";     //文件路径

//判断服务器目录是否存在
 if (System.IO.Directory.Exists(filepath) == false)//如果不存在就创建file文件夹
 {
         System.IO.Directory.CreateDirectory(filepath);
  }


二:判断文件是否存在 不存在即新增

string filepath = "~/upload/filemanager/top.jpg";     //文件路径

if (System.IO.File.Exist(Server.MapPath(filepath))
{
//存在文件

else
{
//不存在文件 
   Directory.Create(Server.MapPath(filepath));//创建该文件
}

你可能感兴趣的:(asp.net,ado.net)