directory-security Questions
3
Solved
I have used the code below to allow Everyone access to a folder:
System.Security.AccessControl.DirectorySecurity sec =
System.IO.Directory.GetAccessControl(directory, AccessControlSections.All);
...
Polled asked 14/3, 2011 at 13:2
2
Solved
My app is creating a directory so that I can store log files in it. I'm adding user security to the directory, but I don't know how to make it propagate. For example, I'm adding the user everyone t...
Pollock asked 28/11, 2009 at 13:21
3
I need to programmatically create a directory that grants "Full Control" to the group "Everyone". If I use
CreateDirectory(path, NULL);
This will, according to the Win32 SDK documentation, creat...
Garrard asked 27/3, 2009 at 17:44
1
© 2022 - 2024 — McMap. All rights reserved.