File Directory ASP.Net Tutorial

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


    protected void Page_Load(object sender, EventArgs e)
    {
        System.Security.AccessControl.FileSecurity sec = File.GetAccessControl(Server.MapPath("Data.txt"));
        
        this.Label1.Text = sec.GetOwner( typeof(System.Security.Principal.NTAccount) ).Value;
      
        AuthorizationRuleCollection auth = sec.GetAccessRules(true, true, typeof(System.Security.Principal.NTAccount));
        TableCell tc;
        foreach (FileSystemAccessRule r in auth)
        {
            TableRow tr = new TableRow();
            
            tc = new TableCell();
            tc.Text = r.AccessControlType.ToString(); 
            tr.Cells.Add(tc);
            tc = new TableCell();
            tc.Text = r.IdentityReference.Value; 
            tr.Cells.Add(tc);
            tc = new TableCell();
            tc.Text = r.InheritanceFlags.ToString();
            tr.Cells.Add(tc);
            tc = new TableCell();
            tc.Text = r.IsInherited.ToString();
            tr.Cells.Add(tc);
            tc = new TableCell();
            tc.Text = r.PropagationFlags.ToString();
            tr.Cells.Add(tc);
            tc = new TableCell();
            tc.Text = r.FileSystemRights.ToString();
            tr.Cells.Add(tc);
            Table1.Rows.Add(tr);
        }
    }



    Untitled Page


    
    

        File Owner:
                      
        
        Access Rules:
        
            
                Control Type
                Identity
                Inheritance Flags
                Is Inherited
                Propagation Flags     
                File System Rights