vote up 5 vote down star
1

In C# (2.0) How do I remove all permissions to a directory, so I can limit the access. I will be adding access back to a limited set of users.

flag

3 Answers

vote up 4 vote down check

Look at the classes in the System.Security.AccessControl namespace, and especially the DirectorySecurity.RemoveAccessRule method.

Also, if you remove all the permissions then you won't be able to add any back afterwards :-)

link|flag
vote up 0 vote down

Here is a great set of articles from CodeProject about Windows ACL programming:

The Windows Access Control Model

Part 3 of the series shows .NET specific methods.

link|flag
vote up 0 vote down

System.IO.Directory.GetAccessControl() and then edit the returned FileSecurity object.

link|flag
Directory budy. – C. Ross Sep 18 at 15:57
nearly the same ^^ I changed it now. – codymanix Sep 18 at 16:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.