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






<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        Dim file As 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)

    End Sub
</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)