May 1, 2011

Delete all files in specified folder in ASP.Net

FileInfo[] fileList;
DirectoryInfo dir = new DirectoryInfo(Server.MapPath("UploadFile/"));
       
fileList = dir.GetFiles();
for (int i = 0; i < fileList.Length; i++)
      fileList[i].Delete();

It will delete all files in UploadFile folder

No comments:

Post a Comment