In my app on local network, any user should create a directory on shared folder using this code. test1 is the name of one of the user's folder for example.

DirectoryInfo di = new DirectoryInfo(@"\\Server\Test\test1");
DirectorySecurity ds=new DirectorySecurity();
ds.SetAccessRule(new FileSystemAccessRule(Enviroment.Username,
                       FileSystemRights.FullControl, AccessControlType.Deny)); 
di.Create(ds);

Now when the admin in domain wants to read every directory from any user this error ocurred:

Attempted to perform an unauthorized operation

The code that the admin runs is:

DirectoryInfo di = new DirectoryInfo(@"\\Server\Test\test1");
DirectorySecurity ds=new DirectorySecurity();
ds.SetAccessRule(new FileSystemAccessRule(Enviroment.Username,
                       FileSystemRights.FullControl, AccessControlType.Allow)); 
di.SetAccessControl(ds);

Where is my mistake?
Thanks in advance.

link|improve this question

76% accept rate
if i try this code for both,i get the same error." ds.SetAccessRule(new FileSystemAccessRule("everyone", FileSystemRights.FullControl, AccessControlType.Deny)); " – Farna May 9 '11 at 13:02
what operating system is the admin running? – Daniel A. White May 9 '11 at 16:03
@Daniel A. White:windows server 2003. – Farna May 9 '11 at 18:54
any body dosn't know??:(:( – Farna May 9 '11 at 19:24
feedback

1 Answer

Can you try like the below

        // Create a new DirectoryInfo object.
        DirectoryInfo dInfo = new DirectoryInfo(@"\\Server\Test\test1");

        // Get a DirectorySecurity object that represents the 
        // current security settings.
        DirectorySecurity dSecurity = dInfo.GetAccessControl();

        // Add the FileSystemAccessRule to the security settings. 
        dSecurity.AddAccessRule(new FileSystemAccessRule(Enviroment.Username,
                                                        FileSystemRights.FullControl, AccessControlType.Allow));

        // Set the new access settings.
        dInfo.SetAccessControl(dSecurity);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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