Please give me a little help. I am using madSecurity FileSecurity to allow full access for "everyone" to a specific folder:
- Code: Select all
with FileSecurity('c:\test').DAcl do
begin
Clear;
SetFileAccess(Everyone, true);
Flush;
end;
Am I doing the right way? I see some people using "Deallocate" instead of "SetFileAccess(Everyone, true)", what is the difference?
Thank you!
Fabio