static methods of the Directory class (C#) : Directory « File Directory « ASP.NET Tutorial






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

<!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)
    {
        Directory.CreateDirectory(@"C:\");
        
        if (Directory.Exists(@"C:\") )
        {
            this.Label1.Text = Directory.GetCreationTime(@"C:\").ToString();
            this.Label2.Text = Directory.GetLastAccessTime(@"C:\").ToString();
            this.Label3.Text = Directory.GetLastWriteTime(@"C:\").ToString();

            Directory.Delete(@"C:\");
        }
    }

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        Creation Time: 
              <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label><br />
        Last Access Time: 
              <asp:Label ID="Label2" runat="server" Text="Label"></asp:Label><br />
        Last Write Time:
              <asp:Label ID="Label3" runat="server" Text="Label"></asp:Label>
    
    </div>
    </form>
</body>
</html>








10.3.Directory
10.3.1.Get directory information (VB.net)
10.3.2.Get file names under a directory
10.3.3.AutoPostBack is true
10.3.4.Setting and displaying the application's working directory (C#)
10.3.5.Setting and displaying the application's working directory (VB)
10.3.6.static methods of the Directory class (C#)
10.3.7.static methods of the Directory class (VB)