Search found 2 matches

by Dr_Calculus
Tue Apr 08, 2008 10:37 am
Forum: madSecurity
Topic: How to set propogating folder permissions
Replies: 1
Views: 10380

I finally managed to work it out. In case it helps any other newbies the code that works for me is:

Code: Select all

With FileSecurity(DPath).DACL do
begin
        Clear;
        NewItem(Everyone, GENERIC_ALL, atAllowed, [afObjectInherit, afContainerInherit]);
end;
by Dr_Calculus
Mon Apr 07, 2008 5:27 pm
Forum: madSecurity
Topic: How to set propogating folder permissions
Replies: 1
Views: 10380

How to set propogating folder permissions

I am using madSecurity to set the file permissions on a folder I create to allow full access to everyone. I use the following code which works: FileSecurity(Path).DAcl.Deallocate; However the folder is used by a service which creates sub folders which need the same permissions but they are being cre...