File Directory ASP.Net Tutorial

<%@ Import Namespace="System" %>
<%@ Import Namespace="System.IO" %>
<%@ Page Language="C#" %>

    void Page_Load(Object Source, EventArgs E)
    {
        MessageLiteral.Text = "";
    }
    
    void DeleteFile(Object Source, EventArgs E)
    {
        FileInfo fileSource = new FileInfo(FileNameTextBox.Text);
    
      try{
          if (fileSource.Exists){
              fileSource.Delete();
              MessageLiteral.Text = "File has been deleted.";
        }
          else
              MessageLiteral.Text = FileNameTextBox.Text + " does not exist.";
      }
      catch (Exception _Error){
        MessageLiteral.Text = _Error.Message;
      }
    }


  
    Deleting a File
  
  
    
      

Type Path/Name of file to delete it (disabled for live demo)