asp.Netプログラミングによるフォルダおよびフォルダ下のファイルの削除方法

786 ワード

本文の例はaspを述べた.Netプログラミングはフォルダとフォルダの下のファイルを削除する方法を実現します.皆さんの参考にしてください.具体的には以下の通りです.

//     
string path = Server.MapPath("Image");
//          
if (Directory.GetFileSystemEntries(path).Length > 0) 
{
  //          
  foreach (string file in Directory.GetFiles(path))
  {
   //     
   if (File.Exists(file)) 
   {
    FileInfo fi = new FileInfo(file);
    //             
    if (fi.Attributes.ToString().IndexOf("ReadyOnly") >= 0) 
    {
     fi.Attributes = FileAttributes.Normal;
    }
    //    
    File.Delete(file);
   }
  }
  //     
  Directory.Delete(path);
}


本文で述べたように皆さんにasp.Netプログラミングが役立ちます.