Displaying and modifying the file properties (C#) : FileInfo « File Directory « ASP.NET Tutorial






<%@ 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>








10.2.FileInfo
10.2.1.Displaying and modifying the file properties (C#)
10.2.2.Displaying and modifying the file properties (VB)