Translate

Friday 29 July 2016

c# - delete image from folder after deleting the record containing image

Use Name Space : using System.IO;
C# code
----------------
string filePhisicalPath = Server.MapPath("~/Images/MyFileName.pdf");
        FileInfo objFile = new FileInfo(filePhisicalPath);
        if (objFile.Exists)
        {
            objFile.Delete();
        }