Megosztás a következőn keresztül:


Útmutató: Hozzáférés-vezérlési listabejegyzések hozzáadása vagy eltávolítása

A hozzáférés-vezérlési lista (ACL) bejegyzéseinek fájlból vagy könyvtárból való hozzáadásához vagy eltávolításához kérje le a FileSecurity fájlt vagy DirectorySecurity az objektumot a fájlból vagy könyvtárból. Módosítsa az objektumot, majd alkalmazza vissza a fájlra vagy könyvtárra.

Fájlból

  1. Hívja meg a FileSystemAclExtensions.GetAccessControl(FileInfo) (vagy .NET-keretrendszer alkalmazások esetében) metódust egy FileSecurity olyan objektum lekéréséhez, FileInfo.GetAccessControlamely egy fájl aktuális ACL-bejegyzéseit tartalmazza.

  2. ACL-bejegyzések hozzáadása vagy eltávolítása az FileSecurity 1. lépésben beszerzett objektumból.

  3. A módosítások alkalmazásához adja át az FileSecurity objektumot a FileSystemAclExtensions.SetAccessControl(FileInfo, FileSecurity) (vagy .NET-keretrendszer alkalmazások FileInfo.SetAccessControlesetében) metódusnak.

Könyvtárból

  1. Hívja meg a FileSystemAclExtensions.GetAccessControl(DirectoryInfo) (vagy .NET-keretrendszer-alkalmazások esetében) metódust egy DirectoryInfo.GetAccessControlDirectorySecurity könyvtár aktuális ACL-bejegyzéseit tartalmazó objektum lekéréséhez.

  2. ACL-bejegyzések hozzáadása vagy eltávolítása az DirectorySecurity 1. lépésben beszerzett objektumból.

  3. A módosítások alkalmazásához adja át az DirectorySecurity objektumot a FileSystemAclExtensions.SetAccessControl(DirectoryInfo, DirectorySecurity) (vagy .NET-keretrendszer alkalmazások DirectoryInfo.SetAccessControlesetében) metódusnak.

Példa

A példa futtatásához érvényes felhasználói vagy csoportfiókot kell megadnia. A példa egy objektumot FileInfo használ. Használja ugyanazt az eljárást az DirectoryInfo osztályhoz.

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