Mega Code Archive

 
Categories / ASP.Net Tutorial / File Directory
 

Displaying and modifying the file properties (C#)

<%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server">     protected void Page_Load(object sender, EventArgs e)     {         System.IO.FileInfo file = new System.IO.FileInfo(Server.MapPath("Data.txt"));         Response.Write("Location: " + file.FullName);         Response.Write("Size: " + file.Length);         Response.Write("Created: " + file.CreationTime);         Response.Write("Modified: " + file.LastWriteTime);         Response.Write("Accessed: " + file.LastAccessTime);         Response.Write("Attributes: " + file.Attributes);     } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server">     <title>Untitled Page</title> </head> <body>     <form id="form1" runat="server">     <div>          </div>     </form> </body> </html>