ASP.NET Tutorial/File Directory/FileInfo

Материал из .Net Framework эксперт
Версия от 11:57, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

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>


Displaying and modifying the file properties (VB)

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