Asp.Netファイルが存在するか否かの判断

1899 ワード

                  ,         ,            
     
if (System.IO.Directory.Exists(Server.MapPath("file")) == false)//        file   
{
  System.IO.Directory.CreateDirectory(Server.MapPath("file"));
}
System.IO.Directory.Delete(Server.MapPath("file"),true);//
 
       
if (System.IO.File.Exist(Server.MapPath("~/Back/Data.xml")))
{
//    
} 
else
{
//     
   Directory.Create(Server.MapPath("~/Back/Data.xml"));//     
}

 
転載先:https://www.cnblogs.com/ilookbo/p/5600159.html