Skip to content

Instantly share code, notes, and snippets.

@kmlprtsng
Created November 12, 2013 10:43
Show Gist options
  • Save kmlprtsng/7428955 to your computer and use it in GitHub Desktop.
Save kmlprtsng/7428955 to your computer and use it in GitHub Desktop.
Delete Files
//Would delete all the files in a directory.
protected void DeleteFiles()
{
FileInfo[] files = new DirectoryInfo(Server.MapPath(WebConfig.ProfilePhotoPath)).GetFiles(WebConfig.ProfilePhotoPrefix + "*" + User.ID + ".*");
foreach (FileInfo file in files)
{
try
{
file.Delete();
}
catch (System.Exception ex) { }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment