C# - How to use DirectorySecurity.SetOwner() ? I'm having troubles
I'm having troubles figuring out the SetOwner() method. In my case, I've created an user in Active Directory by code, then, I create a folder for the user. It all works fine, but I cannot set the newly created user as the owner of the folder. I'm not a C# guru, so I'm having troubles to understand the DirectorySecurity.SetOwner() method. Can anyone please help me out? Here is the code that creates the folder, sets the rights like i want it, but I also need to set the user as the owner. string pathIntern = @"\\11fil01\brukar\" + user.UserName; System.IO.DirectoryInfo diIntern = new System.IO