Re: Read file system ACE's using .Net 2.0
From: Rhett Gong [MSFT] (v-raygon_at_online.microsoft.com)
Date: 10/31/05
- Next message: john: "Re: Question about OffloadModExpo() Function"
- Previous message: Jeffrey Tan[MSFT]: "RE: Winlogon - how to detect that workstation is locked?"
- Maybe in reply to: Joe Kaplan \(MVP - ADSI\): "Re: Read file system ACE's using .Net 2.0"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Mon, 31 Oct 2005 08:02:38 GMT
There is a simple sample code below FileSecurity Class documentation, You may reference it for more details.
For your convenience, I paste the code snippet here:
// C# code
using System;
using System.IO;
using System.Security.AccessControl;
namespace FileSystemExample
{
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)
{
// Get a FileSecurity object that represents the
// current security settings.
FileSecurity fSecurity = File.GetAccessControl(fileName);
// Add the FileSystemAccessRule to the security settings.
fSecurity.AddAccessRule(new FileSystemAccessRule(account,
rights, controlType));
// Set the new access settings.
File.SetAccessControl(fileName, 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)
{
// Get a FileSecurity object that represents the
// current security settings.
FileSecurity fSecurity = File.GetAccessControl(fileName);
// Add the FileSystemAccessRule to the security settings.
fSecurity.RemoveAccessRule(new FileSystemAccessRule(account,
rights, controlType));
// Set the new access settings.
File.SetAccessControl(fileName, fSecurity);
}
}
}
The link for FileSecurity is at: http://msdn2.microsoft.com/en-us/library/system.security.accesscontrol.filesecurity.aspx
Thanks,
Rhett Gong [MSFT]
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
http://support.microsoft.com/default.aspx?scid=/servicedesks/msdn/nospam.asp&SD=msdn
This posting is provided "AS IS" with no warranties and confers no rights.
- Next message: john: "Re: Question about OffloadModExpo() Function"
- Previous message: Jeffrey Tan[MSFT]: "RE: Winlogon - how to detect that workstation is locked?"
- Maybe in reply to: Joe Kaplan \(MVP - ADSI\): "Re: Read file system ACE's using .Net 2.0"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]