Share via


Procedure: Vermeldingen in de toegangsbeheerlijst toevoegen of verwijderen

Als u ACL-vermeldingen (Access Control List) wilt toevoegen aan of verwijderen uit een bestand of map, haalt u het FileSecurity of DirectorySecurity object op uit het bestand of de map. Wijzig het object en pas het vervolgens weer toe op het bestand of de map.

Uit een bestand

  1. Roep de FileSystemAclExtensions.GetAccessControl(FileInfo) methode (of, voor .NET Framework-apps, FileInfo.GetAccessControl) aan om een FileSecurity object op te halen dat de huidige ACL-vermeldingen van een bestand bevat.

  2. ACL-vermeldingen toevoegen aan of verwijderen uit het FileSecurity object dat u in stap 1 hebt verkregen.

  3. Als u de wijzigingen wilt toepassen, geeft u het FileSecurity object door aan de FileSystemAclExtensions.SetAccessControl(FileInfo, FileSecurity) methode (of, voor .NET Framework-apps, FileInfo.SetAccessControl).

Vanuit een map

  1. Roep de FileSystemAclExtensions.GetAccessControl(DirectoryInfo) methode (of, voor .NET Framework-apps, DirectoryInfo.GetAccessControl) aan om een DirectorySecurity object op te halen dat de huidige ACL-vermeldingen van een map bevat.

  2. ACL-vermeldingen toevoegen aan of verwijderen uit het DirectorySecurity object dat u in stap 1 hebt verkregen.

  3. Als u de wijzigingen wilt toepassen, geeft u het DirectorySecurity object door aan de FileSystemAclExtensions.SetAccessControl(DirectoryInfo, DirectorySecurity) methode (of, voor .NET Framework-apps, DirectoryInfo.SetAccessControl).

Opmerking

U moet een geldig gebruikers- of groepsaccount opgeven om dit voorbeeld uit te voeren. In het voorbeeld wordt een FileInfo object gebruikt. Gebruik dezelfde procedure voor de DirectoryInfo klasse.

using System;
using System.IO;
using System.Security.AccessControl;

    class FileExample
    {
        public static void Main()
        {
            try
            {
                string fileName = "test.xml";

                Console.WriteLine($"Adding access control entry for {fileName}");

                // Add the access control entry to the file.
                AddFileSecurity(fileName, @"DomainName\AccountName",
                    FileSystemRights.ReadData, AccessControlType.Allow);

                Console.WriteLine($"Removing access control entry from {fileName}");

                // Remove the access control entry from the file.
                RemoveFileSecurity(fileName, @"DomainName\AccountName",
                    FileSystemRights.ReadData, AccessControlType.Allow);

                Console.WriteLine("Done.");
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
            }
        }

        // Adds an ACL entry on the specified file for the specified account.
        public static void AddFileSecurity(string fileName, string account,
            FileSystemRights rights, AccessControlType controlType)
        {
            FileInfo fileInfo = new(fileName);
            FileSecurity fSecurity = fileInfo.GetAccessControl();

            // Add the FileSystemAccessRule to the security settings.
            fSecurity.AddAccessRule(new FileSystemAccessRule(account,
                rights, controlType));

            // Set the new access settings.
            fileInfo.SetAccessControl(fSecurity);
        }

        // Removes an ACL entry on the specified file for the specified account.
        public static void RemoveFileSecurity(string fileName, string account,
            FileSystemRights rights, AccessControlType controlType)
        {
            FileInfo fileInfo = new(fileName);
            FileSecurity fSecurity = fileInfo.GetAccessControl();

            // Remove the FileSystemAccessRule from the security settings.
            fSecurity.RemoveAccessRule(new FileSystemAccessRule(account,
                rights, controlType));

            // Set the new access settings.
            fileInfo.SetAccessControl(fSecurity);
        }
}
Imports System.IO
Imports System.Security.AccessControl

Module FileExample

    Sub Main()
        Try
            Dim fileName As String = "test.xml"

            Console.WriteLine("Adding access control entry for " & fileName)

            ' Add the access control entry to the file.
            AddFileSecurity(fileName, "DomainName\AccountName",
                FileSystemRights.ReadData, AccessControlType.Allow)

            Console.WriteLine("Removing access control entry from " & fileName)

            ' Remove the access control entry from the file.
            RemoveFileSecurity(fileName, "DomainName\AccountName",
                FileSystemRights.ReadData, AccessControlType.Allow)

            Console.WriteLine("Done.")
        Catch e As Exception
            Console.WriteLine(e)
        End Try

    End Sub

    ' Adds an ACL entry on the specified file for the specified account.
    Sub AddFileSecurity(ByVal fileName As String, ByVal account As String,
        ByVal rights As FileSystemRights, ByVal controlType As AccessControlType)

        Dim fileInfo As New FileInfo(fileName)
        Dim fSecurity As FileSecurity = fileInfo.GetAccessControl()

        ' Add the FileSystemAccessRule to the security settings. 
        Dim accessRule As New FileSystemAccessRule(account, rights, controlType)

        fSecurity.AddAccessRule(accessRule)

        ' Set the new access settings.
        fileInfo.SetAccessControl(fSecurity)

    End Sub

    ' Removes an ACL entry on the specified file for the specified account.
    Sub RemoveFileSecurity(ByVal fileName As String, ByVal account As String,
        ByVal rights As FileSystemRights, ByVal controlType As AccessControlType)

        Dim fileInfo As New FileInfo(fileName)
        Dim fSecurity As FileSecurity = fileInfo.GetAccessControl()

        ' Remove the FileSystemAccessRule from the security settings. 
        fSecurity.RemoveAccessRule(New FileSystemAccessRule(account,
            rights, controlType))

        ' Set the new access settings.
        fileInfo.SetAccessControl(fSecurity)

    End Sub
End Module