File Directory ASP.Net

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

    void Page_Load(object Source, EventArgs e)
    {
        ListFileInfoLiteral.Text = "";
    FileTextBox.Text = Server.MapPath("Default.aspx");
    }
    
    public void DisplayFileInfo(object Source, EventArgs e)
    {
        FileInfo iFile;
        iFile = new FileInfo(FileTextBox.Text);
        if (iFile.Exists){
     System.Text.StringBuilder sb = new System.Text.StringBuilder(1000);
    
         sb.Append( "");
         sb.Append( "");
         sb.Append( "Name");
         sb.Append( "" + iFile.Name + "");
         sb.Append( "");
         sb.Append( "Path\\Name");
         sb.Append( "" + iFile.FullName + "");
         sb.Append( "");
         sb.Append( "Extension");
         sb.Append( "" + iFile.Extension + "");
         sb.Append( "");
         sb.Append( "Size");
         sb.Append( "" + iFile.Length + " bytes");
         sb.Append( "");
         sb.Append( "Attributes");
         sb.Append( "" + iFile.Attributes.ToString() + "");
         sb.Append( "");
         sb.Append( "Creation Time");
         sb.Append( "" + iFile.CreationTime + "");
         sb.Append( "");
         sb.Append( "Last Accessed");
         sb.Append( "" + iFile.LastAccessTime + "");
         sb.Append( "");
         sb.Append( "Last Modified");
         sb.Append( "" + iFile.LastWriteTime + "");
         sb.Append( "");
         ListFileInfoLiteral.Text = sb.ToString();
  }
        else
            ListFileInfoLiteral.Text = "The file does not exist";
    }


  
    Inquiring Information About a File
  
  
    
      

Type path\name of file and click the button.